runtime/fundamentals/workspaces.md
Deno supports workspaces, also known as "monorepos", which allow you to manage multiple related and interdependent packages simultaneously.
A "workspace" is a collection of folders containing deno.json or
package.json configuration files. The root deno.json file defines the
workspace:
{
"workspace": ["./add", "./subtract"]
}
This configures a workspace with add and subtract members, which are
directories expected to have deno.json(c) and/or package.json files.
Each workspace member directory can contain:
deno.json (Deno-first package)deno.json and a package.json (hybrid package – useful while
migrating or when you need Node metadata as well as Deno config)package.json (Node-first package that still participates in the Deno
workspace)When a member contains only a package.json, you can still import it from
anywhere else in the workspace using the name field specified in that
package.json (for example
import { something } from "@scope/my-node-only-pkg";). Deno will resolve that
bare specifier as long as the directory is listed in the root workspace
configuration. This lets you gradually adopt Deno tooling without having to add
a deno.json to every existing Node package up front.
:::info Naming
Deno uses workspace rather than npm's workspaces to represent a singular
workspace with multiple members.
:::
Let's expand on the deno.json workspace example and see its functionality. The
file hierarchy looks like this:
/
├── deno.json
├── main.ts
├── add/
│ ├── deno.json
│ └── mod.ts
└── subtract/
├── deno.json
└── mod.ts
There are two workspace members (add and subtract), each with mod.ts files.
There is also a root deno.json and a main.ts.
The top-level deno.json configuration file defines the workspace and a
top-level import map applied to all members:
{
"workspace": ["./add", "./subtract"],
"imports": {
"chalk": "npm:chalk@5"
}
}
The root main.ts file uses the chalk bare specifier from the import map and
imports the add and subtract functions from the workspace members. Note that
it imports them using @scope/add and @scope/subtract, even though these are
not proper URLs and aren't in the import map. How are they resolved?
import chalk from "chalk";
import { add } from "@scope/add";
import { subtract } from "@scope/subtract";
console.log("1 + 2 =", chalk.green(add(1, 2)));
console.log("2 - 4 =", chalk.red(subtract(2, 4)));
In the add/ subdirectory, we define a deno.json with a "name" field, which
is important for referencing the workspace member. The deno.json file also
contains example configurations, like turning off semicolons when using
deno fmt.
{
"name": "@scope/add",
"version": "0.1.0",
"exports": "./mod.ts",
"fmt": {
"semiColons": false
}
}
export function add(a: number, b: number): number {
return a + b;
}
The subtract/ subdirectory is similar but does not have the same deno fmt
configuration.
{
"name": "@scope/subtract",
"version": "0.3.0",
"exports": "./mod.ts"
}
import { add } from "@scope/add";
export function subtract(a: number, b: number): number {
return add(a, b * -1);
}
Let's run it:
> deno run main.ts
1 + 2 = 3
2 - 4 = -2
There's a lot to unpack here, showcasing some of the Deno workspace features:
This monorepo consists of two packages, placed in ./add and ./subtract
directories.
By using name and version options in members' deno.json files, it's
possible to refer to them using "bare specifiers" across the whole workspace.
In this case, the packages are named @scope/add and @scope/subtract,
where scope is the "scope" name you can choose. With these two options,
it's not necessary to use long and relative file paths in import statements.
npm:chalk@5 package is a shared dependency in the entire workspace.
Workspace members "inherit" imports of the workspace root, allowing to
easily manage a single version of a dependency across the codebase.
add subdirectory specifies in its deno.json that deno fmt should not
apply semicolons when formatting the code. This makes for a much smoother
transition for existing projects, without a need to change tens or hundreds
of files in one go.
Deno workspaces are flexible and can work with Node packages. To make migration for existing Node.js projects easier you can have both Deno-first and Node-first packages in a single workspace.
Deno supports pattern matching for workspace member folders, making it easier to manage workspaces with many members or with a specific directory structure. You can use wildcard patterns to include multiple directories at once:
{
"workspace": [
"some-dir/*",
"other-dir/*/*"
]
}
The pattern matching syntax follows specific rules regarding folder depth:
some-path/* matches files and directories directly within some-path (first
level of indentation only). For example, with packages/*, this includes
packages/foo and packages/bar but not packages/foo/subpackage.
some-path/*/* matches the files and directories located within subdirectories
of some-path (second level of indentation). It does not match items directly
within some-path. For example, with examples/*/*, this includes
examples/basic/demo and examples/advanced/sample but not examples/basic.
Each /* segment in the pattern corresponds to a specific folder depth relative
to the base path. This allows for precise targeting of workspace members at
different levels within your directory structure.
When running a project in a workspace that imports from another workspace member, Deno follows these steps to resolve the dependencies:
deno.json fileworkspace property in that filedeno.jsonexports field in
the workspace member's deno.jsonFor example, given this structure:
/
├── deno.json # workspace: ["./project-a", "./project-b"]
├── project-a/
│ ├── deno.json # name: "@scope/project-a"
│ └── mod.ts # imports from "@scope/project-b"
└── project-b/
├── deno.json # name: "@scope/project-b"
└── mod.ts
When project-a/mod.ts imports from "@scope/project-b", Deno:
deno.jsonproject-b in the workspace arrayproject-b/deno.json exists and has matching package nameproject-b's exportsWhen containerizing a workspace member that depends on other workspace members, you must include:
deno.json fileFor example, if dockerizing project-a above, your Dockerfile should:
COPY deno.json /app/deno.json
COPY project-a/ /app/project-a/
COPY project-b/ /app/project-b/
This preserves the workspace resolution mechanism that Deno uses to find and import workspace dependencies.
The exports property details the entry points and exposes which modules should
be importable by users of your package.
So far, our package only has a single entry. This is fine for simple packages,
but often you'll want to have multiple entries that group relevant aspects of
your package. This can be done by passing an object instead of a string to
exports:
{
"name": "@scope/my-package",
"version": "0.3.0",
"exports": {
".": "./mod.ts",
"./foo": "./foo.ts",
"./other": "./dir/other.ts"
}
}
The "." entry is the default entry that's picked when importing
@scope/my-package. Therefore, the above deno.json example provides the
following entries:
@scope/my-package@scope/my-package/foo@scope/my-package/otherWorkspaces make it easy to publish packages to registries like JSR or NPM. You can publish individual workspace members while keeping their development connected in your monorepo.
To publish a workspace package to JSR, follow these steps:
deno.json:{
"name": "@scope/my-package",
"version": "1.0.0",
"exports": "./mod.ts",
"publish": {
"exclude": ["tests/", "*.test.ts", "examples/"]
}
}
cd my-package
deno publish
When publishing packages from a workspace with interdependencies, use consistent versioning schemes across related packages. Publish dependent packages first, then the packages that depend on them. After publishing, verify the published packages work as expected:
# Test a published package
deno add jsr:@scope/my-published-package
deno test integration-test.ts
When publishing packages that depend on other workspace members, Deno will automatically replace workspace references with proper registry references in the published code.
npm workspacesDeno workspaces support using a Deno-first package from an existing npm package.
In this example, we mix and match a Deno library called @deno/hi, with a
Node.js library called @deno/log that we developed a couple years back.
We'll need to include a deno.json configuration file in the root:
{
"workspace": {
"members": ["hi"]
}
}
Alongside our existing package.json workspace:
{
"workspaces": ["log"]
}
The workspace currently has a log npm package:
{
"name": "@deno/log",
"version": "0.5.0",
"type": "module",
"main": "index.js"
}
export function log(output) {
console.log(output);
}
Let's create an @deno/hi Deno-first package that imports @deno/log:
{
"name": "@deno/hi",
"version": "0.2.0",
"exports": "./mod.ts",
"imports": {
"log": "npm:@deno/log@^0.5"
}
}
import { log } from "log";
export function sayHiTo(name: string) {
log(`Hi, ${name}!`);
}
Now, we can write a main.ts file that imports and calls hi:
import { sayHiTo } from "@deno/hi";
sayHiTo("friend");
$ deno run main.ts
Hi, friend!
You can even have both deno.json and package.json in your existing Node.js
package. Additionally, you could remove the package.json in the root and specify
the npm package in the deno.json workspace members. That allows you to gradually
migrate to Deno, without putting a lot of upfront work.
For example, you can add log/deno.json to configure Deno's linter and
formatter:
{
"fmt": {
"semiColons": false
},
"lint": {
"rules": {
"exclude": ["no-unused-vars"]
}
}
}
Running deno fmt in the workspace, will format the log package to not have
any semicolons, and deno lint won't complain if you leave an unused var in one
of the source files.
Some configuration options only make sense at the root of the workspace, eg.
specifying nodeModulesDir option in one of the members is not available and
Deno will warn if an option needs to be applied at the workspace root.
Here's a full matrix of various deno.json options available at the workspace
root and its members:
| Option | Workspace | Package | Notes |
|---|---|---|---|
| compilerOptions | ✅ | ✅ | |
| importMap | ✅ | ❌ | Exclusive with imports and scopes per config file. Additionally, it is not supported to have importMap in the workspace config, and imports in the package config. |
| imports | ✅ | ✅ | Exclusive with importMap per config file. |
| scopes | ✅ | ❌ | Exclusive with importMap per config file. |
| exclude | ✅ | ✅ | |
| lint.include | ✅ | ✅ | |
| lint.exclude | ✅ | ✅ | |
| lint.files | ⚠️ | ❌ | Deprecated |
| lint.rules.tags | ✅ | ✅ | Tags are merged by appending package to workspace list. Duplicates are ignored. |
| lint.rules.include | |||
| lint.rules.exclude | ✅ | ✅ | Rules are merged per package, with package taking priority over workspace (package include is stronger than workspace exclude). |
| lint.report | ✅ | ❌ | Only one reporter can be active at a time, so allowing different reporters per workspace would not work in the case where you lint files spanning multiple packages. |
| fmt.include | ✅ | ✅ | |
| fmt.exclude | ✅ | ✅ | |
| fmt.files | ⚠️ | ❌ | Deprecated |
| fmt.useTabs | ✅ | ✅ | Package takes priority over workspace. |
| fmt.indentWidth | ✅ | ✅ | Package takes priority over workspace. |
| fmt.singleQuote | ✅ | ✅ | Package takes priority over workspace. |
| fmt.proseWrap | ✅ | ✅ | Package takes priority over workspace. |
| fmt.semiColons | ✅ | ✅ | Package takes priority over workspace. |
| fmt.options.* | ⚠️ | ❌ | Deprecated |
| nodeModulesDir | ✅ | ❌ | Resolution behaviour must be the same in the entire workspace. |
| vendor | ✅ | ❌ | Resolution behaviour must be the same in the entire workspace. |
| tasks | ✅ | ✅ | Package tasks take priority over workspace. cwd used is the cwd of the config file that the task was inside of. |
| test.include | ✅ | ✅ | |
| test.exclude | ✅ | ✅ | |
| test.files | ⚠️ | ❌ | Deprecated |
| publish.include | ✅ | ✅ | |
| publish.exclude | ✅ | ✅ | |
| bench.include | ✅ | ✅ | |
| bench.exclude | ✅ | ✅ | |
| bench.files | ⚠️ | ❌ | Deprecated |
| lock | ✅ | ❌ | Only a single lock file may exist per resolver, and only resolver may exist per workspace, so conditional enablement of the lockfile per package does not make sense. |
| unstable | ✅ | ❌ | For simplicities sake, we do not allow unstable flags, because a lot of the CLI assumes that unstable flags are immutable and global to the entire process. Also weird interaction with DENO_UNSTABLE_* flags. |
| name | ❌ | ✅ | |
| version | ❌ | ✅ | |
| exports | ❌ | ✅ | |
| workspace | ✅ | ❌ | Nested workspaces are not supported. |
Deno provides several ways to run commands across all or specific workspace members:
Workspace members can have different sets of compiler options. They are also
inherited between root and member, much like
TSConfig extends. For
example:
{
"workspace": ["./web"],
"compilerOptions": {
"checkJs": true
}
}
{
"compilerOptions": {
"lib": ["esnext", "dom"]
}
}
Files in the web subdirectory will be configured with the following options:
{
"compilerOptions": {
"checkJs": true,
"lib": ["esnext", "dom"]
}
}
Each member will be partitioned and checked separately from one another. Just
run deno check from the workspace root:
deno check
To run tests across all workspace members, simply execute deno test from the
workspace root:
deno test
This will run tests in all workspace members according to their individual test configurations.
To run tests for a specific workspace member, you can either:
cd my-directory
deno test
deno test my-directory/
Similar to testing, formatting and linting commands run across all workspace members by default:
deno fmt
deno lint
Each workspace member follows its own formatting and linting rules as defined in
its deno.json file, with some settings inherited from the root configuration
as shown in the table above.
You can define tasks at both the workspace root and in individual workspace members:
{
"workspace": ["./add", "./subtract"],
"tasks": {
"build": "echo 'Building all packages'",
"test:all": "deno test"
}
}
{
"name": "@scope/add",
"version": "0.1.0",
"exports": "./mod.ts",
"tasks": {
"build": "echo 'Building add package'",
"test": "deno test"
}
}
To run a task defined in a specific package:
deno task --cwd=add build
Workspaces provide powerful ways to share and manage dependencies across projects:
Common development dependencies like testing libraries can be defined at the workspace root:
{
"workspace": ["./add", "./subtract"],
"imports": {
"@std/testing/": "jsr:@std/testing@^0.218.0/",
"chai": "npm:chai@^4.3.7"
}
}
This makes these dependencies available to all workspace members without needing to redefine them.
When resolving dependencies, workspace members can override dependencies defined in the root. If both the root and a member specify different versions of the same dependency, the member's version will be used when resolving within that member's folder. This allows individual packages to use specific dependency versions when needed.
However, member-specific dependencies are scoped only to that member's folder. Outside of member folders, or when working with files at the workspace root level, the workspace root's import map will be used for resolving dependencies (including JSR and HTTPS dependencies).
As shown in the earlier example with the add and subtract modules, workspace
members can depend on each other. This enables a clean separation of concerns
while maintaining the ability to develop and test interdependent modules
together.
The subtract module imports functionality from the add module, demonstrating
how workspace members can build upon each other:
import { add } from "@scope/add";
export function subtract(a: number, b: number): number {
return add(a, b * -1);
}
This approach allows you to:
Deno supports workspace protocol specifiers in package.json files. These are
useful when you have npm packages that depend on other packages within the
workspace:
{
"name": "my-npm-package",
"dependencies": {
"another-workspace-package": "workspace:*"
}
}
The following workspace protocol specifiers are supported:
workspace:* - Use the latest version available in the workspaceworkspace:~ - Use the workspace version with only patch-level changesworkspace:^ - Use the workspace version with semver-compatible changesDeno works seamlessly with standard npm workspaces defined in package.json:
{
"workspaces": ["packages/*"]
}
For pnpm users, Deno supports typical pnpm workspace configurations. However, if
you're using a pnpm-workspace.yaml file, you'll need to migrate to a
deno.json workspace configuration:
packages:
- "packages/*"
Should be converted to:
{
"workspace": ["packages/*"]
}
This allows for smooth integration between Deno and npm/pnpm ecosystems during migration or in hybrid projects.
For more information on configuring your project, check out the Configuration with deno.json tutorial.