An example repository showcasing using Qwik with Nx leveraging the qwik-nx plugin.
The repository contains:
- A Qwik Application (apps/todo)
- An E2E Project (apps/todo-e2e)
- A Workspace Library to house logic used by the application (libs/data-access)
To serve the application, run the command below and then in a browser navigate to http://localhost:4200/todo
npx nx serve todo
To build the appliaction, run the command below.
npx nx build todo
To run the unit tests, run the command below.
npx nx test todo
To run the e2e tests, run the command below.
npx nx e2e todo-e2e
Use the resources below learn more about Qwik and Nx.