Skip to content

Instantly share code, notes, and snippets.

@barinascode
Created February 16, 2023 00:32
Show Gist options
  • Save barinascode/9cd2e2239de4908374b6881806ec1668 to your computer and use it in GitHub Desktop.
Save barinascode/9cd2e2239de4908374b6881806ec1668 to your computer and use it in GitHub Desktop.
Nx commands
// Create workspace
npx create-nx-workspace@latest
// Add react support
npm i --save-dev @nrwl/react
// Add express support
npm i --save-dev @nrwl/express
// Create react app
npx nx g @nrwl/react:app <app-name>
// Create express app
nx g @nrwl/express:app <app-name>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment