Skip to content

Files

Latest commit

1082c7a · Nov 8, 2024

History

History

qwik

Qwik with Nx

integrated monorepo

An example repository showcasing using Qwik with Nx leveraging the qwik-nx plugin.

What's inside

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)

How to run it

Serve the application

To serve the application, run the command below and then in a browser navigate to http://localhost:4200/todo

npx nx serve todo

Build the application

To build the appliaction, run the command below.

npx nx build todo

Test the application

To run the unit tests, run the command below.

npx nx test todo

Run E2E tests

To run the e2e tests, run the command below.

npx nx e2e todo-e2e

Learn More

Use the resources below learn more about Qwik and Nx.