HomeAbout

What is workspaces

Set of features to managing multiple packages from your local file system from within a singular top-level, root package.

Workspaces are auto-symlinked during npm install as a single workspace.

  • meaning it's a nested package within the current local file system.

Defining it in package.json:

{ "name": "my-workspaces-powered-project", "workspaces": [ "packages/a", "packages/b" ] }
AboutContact