generated at
Denoのビルド
Denoのコアをビルドする方法
2020/10/05更新

サブモジュールごとclone
bash
git clone --recurse-submodules https://github.com/denoland/deno.git

(Windows上ではcloneに先立ち、明示的に core.symlinks=trueを設定する必要があります。)
bash
git config --global core.symlinks=true

Rustrustupで入れる
bash
$ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
PATH=$HOME/.cargo/bin:$PATH にパス通す

Python2系を使用
bash
$ pyenv install 2.7.x
python で動くpythonが2系である必要があります

ビルド
bash
$ cargo build

ビルドしたDenoを実行する
bash
$ ./target/debug/deno run tests/002_hello.ts

テストを実行する
bash
$ cargo test

Format & Lint
bash
$ ./tools/format.py $ ./tools/lint.py