deno
Installation
SKILL.md
Deno
Deno v2.0 (2024/2025) focuses on Node.js Compatibility. It can now run most npm packages and package.json projects, removing the biggest barrier to entry.
When to Use
- Security: Sandbox by default. No file/net access unless explicitly allowed.
- All-in-One: Built-in linter, formatter, test runner, bundler.
- TypeScript: Native support. No config needed.
Core Concepts
Permission Model
deno run --allow-net --allow-read main.ts.
URL Imports (Legacy-ish)
import ... from "https://deno.land/...". v2 supports npm specifiers too.