Getting Started
Creating an app using the CLI
The first step is to create an application. Qwik comes with a CLI that allows you to create a basic working skeleton of an application. We will use the CLI to create a Todo sample app, and we will use that application to do a walk-through of Qwik so that you can familiarize yourself with it.
Running in development
Once the application is download.
- Change into the directory created by the
npm create qwik@latest
.
cd qwik-todo
- Install NPM modules:
npm install
- Invoke the dev server
npm start
- You should see a server running with your To-do application
vite v2.8.6 dev server running at:
> Local: http://localhost:3000/
> Network: use `--host` to expose
ready in 157ms.
- Visit http://localhost:3000/ to explore the To-do app.