deno
Installation
SKILL.md
Deno
A JavaScript and TypeScript runtime with a package manager, formatter, linter, test runner, type checker, and bundler in one binary. Runs TypeScript directly.
Needs Deno 2.9+. Check with deno --version, update with deno upgrade.
Deno works the way npm and bun do
Deno is not a separate ecosystem to port code into:
deno installreads an existingpackage.jsonand writes a realnode_modules.deno add expressinstalls from npm. Unprefixed names default to npm.deno task buildrunsscripts.buildfrompackage.jsonortasks.buildfromdeno.json. If both define it,deno.jsonwins.- Node built-ins work prefixed or not:
node:fsandfsboth resolve. deno main.jsruns a file.deno runis optional.- Deno reads
tsconfig.json.