Skip to content

fbernack/qwik-tutorial

Repository files navigation

Get Started With Qwik

Tutorial Qwik project for demonstrating the essential concepts of the super-fast JavaScript framework.

🍿 YouTube: https://youtu.be/uXVaeKzN44Y

Create and Start Your First Qwik Project

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

Tailwind

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

JSON Server

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

About

Tutorial Qwik project for demonstrating the essential concepts of the super-fast JavaScript framework.

Topics

Resources

Stars

Watchers

Forks