File Explorer

/var/lang/lib/node_modules/npm/man/man7

This explorer reads the filesystem of the server it runs on, so /workspace/user isn't present here. Browsing and the terminal still work against this server's own disk from /.

0 dirs
11 files
workspaces.77.1 KB · 239 lines
.TH "WORKSPACES" "7" "February 2026" "NPM@11.11.0" "".SH "NAME"\fBWorkspaces\fR - Working with workspaces.SS "Description".P\fBWorkspaces\fR is a generic term that refers to the set of features in the npm cli that provides support for managing multiple packages from your local file system from within a singular top-level, root package..PThis set of features makes up for a much more streamlined workflow handling linked packages from the local file system. It automates the linking process as part of \fBnpm install\fR and removes the need to manually use \fBnpm link\fR in order to add references to packages that should be symlinked into the current \fBnode_modules\fR folder..PWe also refer to these packages being auto-symlinked during \fBnpm install\fR as a single \fBworkspace\fR, meaning it's a nested package within the current local file system that is explicitly defined in the \fB\[rs]fBpackage.json\[rs]fR\fR \fI\(la/configuring-npm/package-json#workspaces\(ra\fR \fBworkspaces\fR configuration..SS "Defining workspaces".PWorkspaces are usually defined via the \fBworkspaces\fR property of the \fB\[rs]fBpackage.json\[rs]fR\fR \fI\(la/configuring-npm/package-json#workspaces\(ra\fR file, e.g:.P.RS 2.nf{  "name": "my-workspaces-powered-project",  "workspaces": \[lB]    "packages/a"  \[rB]}.fi.RE.PGiven the above \fBpackage.json\fR example living at a current working directory \fB.\fR that contains a folder named \fBpackages/a\fR that itself contains a \fBpackage.json\fR inside it, defining a Node.js package, e.g:.P.RS 2.nf.+-- package.json`-- packages   +-- a   |   `-- package.json.fi.RE.PThe expected result once running \fBnpm install\fR in this current working directory \fB.\fR is that the folder \fBpackages/a\fR will get symlinked to the \fBnode_modules\fR folder of the current working dir..PBelow is a post \fBnpm install\fR example, given that same previous example structure of files and folders:.P.RS 2.nf.+-- node_modules|  `-- a -> ../packages/a+-- package-lock.json+-- package.json`-- packages   +-- a   |   `-- package.json.fi.RE.SS "Getting started with workspaces".PYou may automate the required steps to define a new workspace using npm help init. For example in a project that already has a \fBpackage.json\fR defined you can run:.P.RS 2.nfnpm init -w ./packages/a.fi.RE.PThis command will create the missing folders and a new \fBpackage.json\fR file (if needed) while also making sure to properly configure the \fB"workspaces"\fR property of your root project \fBpackage.json\fR..SS "Adding dependencies to a workspace".PIt's possible to directly add/remove/update dependencies of your workspaces using the \fB\[rs]fBworkspace\[rs]fR config\fR \fI\(la/using-npm/config#workspace\(ra\fR..PFor example, assuming the following structure:.P.RS 2.nf.+-- package.json`-- packages   +-- a   |   `-- package.json   `-- b       `-- package.json.fi.RE.PIf you want to add a dependency named \fBabbrev\fR from the registry as a dependency of your workspace \fBa\fR, you may use the workspace config to tell the npm installer that package should be added as a dependency of the provided workspace:.P.RS 2.nfnpm install abbrev -w a.fi.RE.P\fBAdding a workspace as a dependency of another workspace:\fR.PIf you want to add workspace \fBb\fR as a dependency of workspace \fBa\fR, you can use the workspace protocol in the dependency specifier:.P.RS 2.nfnpm install b@workspace:* -w a.fi.RE.PThis will add an entry to workspace \fBa\fR's \fBpackage.json\fR like:.P.RS 2.nf{  "dependencies": {    "b": "workspace:*"  }}.fi.RE.PThe \fBworkspace:\fR protocol tells npm to link to the local workspace rather than fetching from the registry. The \fB*\fR version means it will use whatever version is defined in workspace \fBb\fR's \fBpackage.json\fR..PNote: other installing commands such as \fBuninstall\fR, \fBci\fR, etc will also respect the provided \fBworkspace\fR configuration..SS "Using workspaces".PGiven the \fBspecifics of how Node.js handles module resolution\fR \fI\(lahttps://nodejs.org/dist/latest-v14.x/docs/api/modules.html#modules_all_together\(ra\fR it's possible to consume any defined workspace by its declared \fBpackage.json\fR \fBname\fR. Continuing from the example defined above, let's also create a Node.js script that will require the workspace \fBa\fR example module, e.g:.P.RS 2.nf// ./packages/a/index.jsmodule.exports = 'a' // ./lib/index.jsconst moduleA = require('a')console.log(moduleA) // -> a.fi.RE.PWhen running it with:.P\fBnode lib/index.js\fR.PThis demonstrates how the nature of \fBnode_modules\fR resolution allows for \fBworkspaces\fR to enable a portable workflow for requiring each \fBworkspace\fR in such a way that is also easy to npm help publish these nested workspaces to be consumed elsewhere..SS "Running commands in the context of workspaces".PYou can use the \fBworkspace\fR configuration option to run commands in the context of a configured workspace. Additionally, if your current directory is in a workspace, the \fBworkspace\fR configuration is implicitly set, and \fBprefix\fR is set to the root workspace..PFollowing is a quick example on how to use the \fBnpm run\fR command in the context of nested workspaces. For a project containing multiple workspaces, e.g:.P.RS 2.nf.+-- package.json`-- packages   +-- a   |   `-- package.json   `-- b       `-- package.json.fi.RE.PBy running a command using the \fBworkspace\fR option, it's possible to run the given command in the context of that specific workspace. e.g:.P.RS 2.nfnpm run test --workspace=a.fi.RE.PYou could also run the command within the workspace..P.RS 2.nfcd packages/a && npm run test.fi.RE.PEither will run the \fBtest\fR script defined within the \fB./packages/a/package.json\fR file..PPlease note that you can also specify this argument multiple times in the command-line in order to target multiple workspaces, e.g:.P.RS 2.nfnpm run test --workspace=a --workspace=b.fi.RE.POr run the command for each workspace within the 'packages' folder:.P.RS 2.nfnpm run test --workspace=packages.fi.RE.PIt's also possible to use the \fBworkspaces\fR (plural) configuration option to enable the same behavior but running that command in the context of \fBall\fR configured workspaces. e.g:.P.RS 2.nfnpm run test --workspaces.fi.RE.PWill run the \fBtest\fR script in both \fB./packages/a\fR and \fB./packages/b\fR..PCommands will be run in each workspace in the order they appear in your \fBpackage.json\fR.P.RS 2.nf{  "workspaces": \[lB] "packages/a", "packages/b" \[rB]}.fi.RE.POrder of run is different with:.P.RS 2.nf{  "workspaces": \[lB] "packages/b", "packages/a" \[rB]}.fi.RE.SS "Ignoring missing scripts".PIt is not required for all of the workspaces to implement scripts run with the \fBnpm run\fR command..PBy running the command with the \fB--if-present\fR flag, npm will ignore workspaces missing target script..P.RS 2.nfnpm run test --workspaces --if-present.fi.RE.SS "See also".RS 0.IP \(bu 4npm help install.IP \(bu 4npm help publish.IP \(bu 4npm help run.IP \(bu 4npm help config.RE 0