This project was generated using Nx.
🔎 Smart, Fast and Extensible Build System
Nx supports many plugins which add capabilities for developing different types of applications and different tools.
These capabilities include generating applications, libraries, etc as well as the devtools to test, and build projects as well.
Below are our core plugins:
There are also many community plugins you could add.
Run nx g @nrwl/react:app my-app to generate an application.
You can use any of the plugins above to generate applications as well.
When using Nx, you can create multiple applications and libraries in the same workspace.
Run nx g @nrwl/react:lib my-lib to generate a library.
You can also use any of the plugins above to generate libraries as well.
Libraries are shareable across libraries and applications. They can be imported from @zuplyd/mylib.
Run nx e2e my-app to execute the end-to-end tests via Cypress.
Run nx affected:e2e to execute the end-to-end tests affected by a change.
Run nx g @nrwl/nest:app <app_name> to generate an application.
Before creating the relevent Module, Service and Controller the folder to which they go in must be created.
Run nx g @nrwl/nest:module <folder path where the file is created> then follow on screen instructions.
ex: nx g @nrwl/nest:module /app/users
Run nx g @nrwl/nest:service <folder path where the file is created> then follow on screen instructions.
ex: nx g @nrwl/nest:service /app/users
Run nx g @nrwl/nest:controller <folder path where the file is created> then follow on screen instructions.
ex: nx g @nrwl/nest:controller /app/users
Visit the Nx Nest Documentation to learn more.
Visit the NestJs Documentation to learn more.
Run nx serve my-app for a dev server. Navigate to http://localhost:<port>/. The app will automatically reload if you change any of the source files.
Run nx g component <component-name> --directory=app/components --project=frontend --export to generate a new component.
when asked for css chose none
Run nx build my-app to build the project. The build artifacts will be stored in the dist/ directory. Use the --prod flag for a production build.
Run nx test my-app to execute the unit tests via Jest.
Run nx affected:test to execute the unit tests affected by a change.
Run nx graph to see a diagram of the dependencies of your projects.
Visit the Nx Documentation to learn more.
