/deno-template

experimentations on deno

Primary LanguageTypeScriptMIT LicenseMIT

deno-template

Let's use Deno !

Setup

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.

Basic commands

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