Let's use Deno !
Install with curl -fsSL https://deno.land/x/install/install.sh | sh
.
Update using deno upgrade
.
Read the doc.
Check the standard Web APIs.
Check the Deno Runtime API.
Check the examples.
deno run first_steps.ts
Action | Command |
---|---|
Dev | deno run --watch --check main.ts |
Debug | deno run --inspect-wait --watch main.ts |
Start | deno run main.ts |
Test | deno test -h |
Compile | deno compile -h |
Format | deno fmt -h |
Lint | deno lint -h |
Type checking | deno check --all maint.ts |
continue there