mirror of
https://github.com/microsoft/Web-Dev-For-Beginners.git
synced 2025-08-29 01:20:56 +02:00
35 lines
423 B
Markdown
35 lines
423 B
Markdown
# Quiz app
|
|
|
|
This quiz app helps you display questions and answers in a quiz format.
|
|
|
|
## Install the app
|
|
|
|
Run `npm install` to install the dependencies.
|
|
|
|
```sh
|
|
npm install
|
|
```
|
|
|
|
## Build the app
|
|
|
|
To build the solution, run `npm run build`.
|
|
|
|
```sh
|
|
npm run build
|
|
```
|
|
|
|
## Run
|
|
|
|
To run the solution, run `npm run dev`.
|
|
|
|
```bash
|
|
npm run dev
|
|
```
|
|
|
|
## Lint
|
|
|
|
To ensure the code is linted, run `npm run lint`.
|
|
|
|
```bash
|
|
npm run lint
|
|
``` |