Getting Started

Nx is a smart and extensible build framework that helps 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