nx/docs/node/getting-started/getting-started.md

1.0 KiB

Getting Started

Nx is a suite of powerful, extensible dev tools that help you develop, test, build, and scale Node applications.

Create Nx Workspace

Creating an Nx workspace is easy. Run the following command to set up an Nx workspace with an NestJS app in it.

npx create-nx-workspace --preset=nest

To create an Nx workspace with an Express app run:

npx create-nx-workspace --preset=empty

cd into the folder and run:

npm i @nrwl/express
npx nx g @nrwl/express:app myapp

Learn Nx Fundamentals

Dive Deep