deno
Assists with building secure JavaScript and TypeScript applications using the Deno runtime. Use when creating servers, CLI tools, or scripts with Deno's built-in tooling, permission model, and web standards APIs. Trigger words: deno, deno deploy, deno serve, deno kv, deno permissions, secure runtime, jsr.
Usage
Getting Started
- Install the skill using the command above
- Open your AI coding agent (Claude Code, Codex, Gemini CLI, or Cursor)
- Reference the skill in your prompt
- The AI will use the skill's capabilities automatically
Example Prompts
- "Review the open pull requests and summarize what needs attention"
- "Generate a changelog from the last 20 commits on the main branch"
Documentation
Overview
Deno is a secure JavaScript/TypeScript runtime with built-in tooling including a formatter, linter, test runner, and bundler. It features a permissions model that restricts file, network, and environment access by default, native TypeScript support without transpilation, and full web standards compatibility.
Instructions
- When creating servers, use
Deno.serve()for high-performance HTTP handling with Web Standards Request/Response, and enable parallel workers withdeno serve --parallelfor multi-core utilization. - When configuring security, specify permissions explicitly (
--allow-read,--allow-net,--allow-env) scoped to specific paths, hosts, or variable names. Never deploy with--allow-all. - When managing dependencies, use JSR (
jsr:) for versioned, type-checked packages,npm:specifier for npm packages, and configure import maps indeno.jsonfor clean paths. - When writing tests, use
Deno.test()with@std/assertassertions,@std/testingfor mocking, anddeno test --coveragefor coverage reports. Deno's sanitizers detect resource leaks automatically. - When building CLI tools, use
deno compileto produce standalone executables that cross-compile for Linux, macOS, and Windows with no runtime dependency. - When deploying to the edge, use Deno Deploy with Deno KV for key-value storage,
Deno.cron()for scheduled tasks, and queues for background processing. - When using Deno KV, structure keys hierarchically (
["users", id, "profile"]), useatomic()for transactions, and configure TTL withexpireInfor automatic expiration.
Examples
Example 1: Build a REST API with Deno KV
User request: "Create an API with Deno that stores data in Deno KV"
Actions:
- Create HTTP server with
Deno.serve()and route matching - Open KV store with
Deno.openKv()and define key structure - Implement CRUD operations using
kv.get(),kv.set(), andkv.atomic() - Set explicit permissions in
deno.jsontask definitions
Output: A secure API with embedded key-value storage, ready for Deno Deploy.
Example 2: Compile a CLI tool for distribution
User request: "Create a Deno CLI tool that can be distributed as a single binary"
Actions:
- Build the CLI with argument parsing using
@std/cli - Add file and network permissions scoped to required resources
- Write tests with
Deno.test()and run withdeno test - Compile to standalone binaries with
deno compile --targetfor each platform
Output: Cross-platform standalone executables with no runtime dependency.
Guidelines
- Always specify permissions explicitly in production; never deploy with
--allow-all. - Use
deno.jsonimports map for clean import paths instead of raw URLs. - Prefer JSR (
jsr:) over URL imports for versioned, type-checked, immutable packages. - Use
npm:specifier for npm packages instead of CDN URLs. - Run
deno fmtanddeno lintin CI for zero-config formatting and linting. - Use
Deno.serve()over third-party frameworks for simple APIs; it is faster and lighter. - Compile to standalone binary with
deno compilefor distribution with no runtime dependency.
Information
- Version
- 1.0.0
- Author
- terminal-skills
- Category
- Development
- License
- Apache-2.0