migrate-to-deno

작성자: denoland

Use when moving a Node.js, npm, Yarn, pnpm, or Bun project to Deno, or when adopting Deno incrementally in an existing JavaScript or TypeScript codebase.…

npx skills add https://github.com/denoland/skills --skill migrate-to-deno

Migrating to Deno

Requires Deno 2.9 or later. For general Deno usage once migrated, see the deno skill.

Most Node projects already run under Deno

Deno reads an existing package.json, resolves the same npm packages, writes a real node_modules, runs the same scripts, and supports node: built-ins. TypeScript runs with no build step.

There is usually no code to change — only which binary you invoke. Don't start by rewriting imports to jsr:, swapping dependencies for Deno-specific ones, or restructuring directories. Proposing that is the most common way this goes wrong.

Migrate in rungs

Each rung is independently useful and reversible. Stop wherever suits the project; plenty of teams stop at rung 1.

Rung 1 — Deno as the package manager only

deno install

Reads package.json, resolves the same dependencies, writes node_modules, and creates deno.lock — seeded from any existing package-lock.json, yarn.lock, bun.lock, or pnpm lockfile, so pins and integrity hashes carry over instead of drifting.

The app still runs under node; teammates are unaffected. Commit deno.lock once verified. To back out: delete deno.lock and node_modules, then npm install.

Rung 2 — Run it with Deno

deno run -A main.js      # or: deno -A main.js
deno task build          # runs scripts.build from package.json

Use -A here. The goal is confirming the program works, not designing a permission policy — changing both at once makes failures ambiguous.

Rung 3 — Tighten permissions

Replace -A with the narrowest set that works: run it, read what it asks for, grant exactly that.

deno run --allow-net=api.example.com --allow-read=./config --allow-env=PORT main.js

This buys something Node cannot offer, and is worth doing before deploying.

Rung 4 — Optionally, adopt the built-in toolchain

deno fmt for prettier, deno lint for eslint, deno test for jest or vitest, deno check for tsc, deno watch for nodemon, deno compile for pkg.

Optional, and usually not worth it for an existing project. These are not drop-in replacements; parity is incomplete, so this is a real migration, not a config change. A project happy with prettier, eslint, and vitest should keep them and use Deno as runtime and package manager only. Prefer the built-in tools for new projects. If you do move an existing one, go a tool at a time.

Command equivalents

TasknpmYarnpnpmBunDeno
Install allnpm installyarn installpnpm installbun installdeno install
Addnpm i <p>yarn add <p>pnpm add <p>bun add <p>deno add <p>
Add devnpm i -D <p>yarn add -D <p>pnpm add -D <p>bun add -d <p>deno add -D <p>
Removenpm uninstall <p>yarn remove <p>pnpm remove <p>bun remove <p>deno remove <p>
CI installnpm ciyarn install --immutablepnpm i --frozen-lockfilebun install --frozen-lockfiledeno ci
Run scriptnpm run <s>yarn <s>pnpm <s>bun run <s>deno task <s>
Run binarynpx <p>yarn dlx <p>pnpm dlx <p>bunx <p>dx <p>
Outdatednpm outdatedyarn outdatedpnpm outdatedbun outdateddeno outdated
Auditnpm audityarn npm auditpnpm auditbun auditdeno audit
Whynpm ls <p>yarn why <p>pnpm why <p>bun why <p>deno why <p>
Run a filenode f.jsbun f.tsdeno f.ts
Run TSts-node f.tsbun f.tsdeno f.ts
Watchnodemon f.jsbun --watch f.tsdeno watch f.ts
Formatprettierprettierdeno fmt
Linteslintdeno lint
Testjest, vitestbun testdeno test
Coveragenyc, c8deno coverage
Type-checktsc --noEmittscdeno check
Bundle binarypkg, nexebun build --compiledeno compile

† Yarn Berry (v2+) spelling. Yarn Classic (v1) uses yarn install --frozen-lockfile and yarn audit.

‡ Yarn Classic only — Berry removed yarn outdated.

dx is a separate binary installed alongside Deno, and an alias for deno x. It does not appear in the top-level deno --help output. Like npx, it runs the package with the sandbox disabled.

The four things that actually break

Requires net access to "..." (or read, env, run)

Deno grants nothing by default. Add that specific permission, or -A while still establishing the program works at all.

ReferenceError: require is not defined

A file containing CommonJS is being parsed as ESM. .cjs is always CommonJS, .mjs always ESM; .js and .ts follow "type" in the nearest package.json. For a CommonJS project, set "type": "commonjs".

A dependency is broken, or postinstall never ran

Lifecycle scripts don't run by default. Native addons notice immediately. Approvals are recorded in the config file, so this is one-time:

deno approve-scripts                              # interactive picker
deno install --allow-scripts=npm:better-sqlite3   # or name them directly

A tool cannot find files inside node_modules

Deno's layout is pnpm-style: real files in node_modules/.deno/, exposed via symlinks. Tools assuming npm's flat hoisted tree need:

{ "nodeModulesLinker": "hoisted" }

What has no Deno equivalent

Say so rather than improvising a workaround that won't hold:

  • Yarn Plug'n'Play. Deno creates a real node_modules; .pnp.cjs is unused and .yarnrc.yml resolver settings don't transfer.
  • yarn patch / pnpm patched dependencies. Vendor or fork.
  • overrides / resolutions. Pin via an import map entry instead.
  • Registry and resolver tuning in .npmrc / .yarnrc.yml.
  • Bun build features — macros, HTMLRewriter, HTML entrypoints.

Per-tool details

  • references/FROM_NPM.md — lockfile seeding, node_modules layout, overrides
  • references/FROM_YARN.md — Plug'n'Play, Berry vs Classic, workspaces
  • references/FROM_PNPM.mdpnpm-workspace.yaml, catalog:, patches
  • references/FROM_BUN.md — Bun API translation, bunfig.toml
  • references/NODE_APIS.mdnode: built-ins, DENO_COMPAT, CJS/ESM

Further reading

denoland의 다른 스킬

fmt
denoland
저장소의 모든 코드를 포맷하세요. PR을 열거나 변경 사항을 커밋하기 전에 실행하세요.
official
issue-triage
denoland
Deno GitHub 이슈를 트리아지하세요 — 버그를 재현하고, 분류하고, 라벨을 지정하고, 결과를 댓글로 남깁니다. 이슈를 트리아지하라는 요청을 받거나 이슈 번호/URL이 주어졌을 때 사용하세요…
official
lint-all
denoland
모든 코드 린트 (Rust + JS/TS). Rust 코드가 변경되었을 때 PR을 열기 전에 사용하세요.
official
lint-js
denoland
Lint JS/TS code only. Use before opening a PR when only JavaScript or TypeScript files were changed (no Rust).
official
node-compat
denoland
Node.js 호환성 테스트를 실행하고, 실패를 진단한 다음 구현을 수정하거나 테스트를 건너뛰거나 무시하세요. 노드 호환 테스트 작업을 요청받았을 때 사용하세요.
official
deno
denoland
Deno 프로젝트에서 코드를 작성, 실행, 구성, 검토 또는 디버깅할 때나 새 프로젝트를 생성할 때 사용합니다. deno…를 사용한 의존성 관리를 포함합니다.
official
deno-deploy
denoland
Use when deploying Deno apps to production, asking about Deno Deploy, or working with `deno deploy` CLI commands. Covers deployment workflows, environment…
official
deno-expert
denoland
전문가 수준의 Deno 지식으로 코드 리뷰, 디버깅, 모범 사례 적용을 지원합니다. Deno 코드를 검토하거나 고급 Deno 질문에 답변할 때 사용하세요.
official