deno は node.js の作者が、node.js の反省点を生かして、
0から作った node.js の後継です。
Deno, A secure runtime for JavaScript and TypeScript.
https://deno.land
deno は rust で書かれているので rust をインストールします。
macOS Catalina で動作確認しています。
rust をインストール
% curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
バージョン確認
% rustc -V rustc 1.45.2 (d3fb005a3 2020-07-31)
deno のソースをクローン
% git clone https://github.com/denoland/deno.git
% cd deno
% cargo build
以下のコマンドでサンプルを実行できます。
% ./target/debug/deno run cli/tests/002_hello.ts Hello World
おすすめの rust の本
プログラミング言語Rust入門
実践Rustプログラミング入門
コメント