Tutorial Qwik project for demonstrating the essential concepts of the super-fast JavaScript framework.
🍿 YouTube: https://youtu.be/uXVaeKzN44Y
To set-up a new Qwik project, simply run the following command on your machine (requires Node):
npm create qwik@latest
To start the app, run:
npm start
In the project, we use Tailwind for the styling. To install Tailwind, run:
npm install -D tailwindcss postcss autoprefixer
And to initialize it (i.e. create dedicated config files), run:
npx tailwindcss init -p
We use a backend mock for fetching data. Install json-server:
npm install json-server@v0 -g
Run it via:
json-server --watch db.json