Deno runtime, TypeScript-native development, permissions, and built-in tooling. Use when working with deno, deno.json, deno serve, deno test, deno fmt, or building TypeScript projects with the Deno runtime.
설치
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Deno runtime, TypeScript-native development, permissions, and built-in tooling. Use when working with deno, deno.json, deno serve, deno test, deno fmt, or building TypeScript projects with the Deno runtime.
Deno
Use deno fmt for formatting - no prettier config needed.
Use deno lint for linting.
deno test for testing - built-in test runner.
Permissions are explicit: --allow-read, --allow-write, --allow-net, --allow-env.
Prefer URL imports over npm packages when possible.
Use deno.json or deno.jsonc for project configuration.
Standard library at https://deno.land/std/ - prefer stdlib over third-party.
TypeScript is native - no tsconfig.json needed unless customizing.