You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Web-Dev-For-Beginners/quiz-app/README.md

35 lines
423 B

3 months ago
# Quiz app
3 months ago
This quiz app helps you display questions and answers in a quiz format.
3 months ago
## Install the app
3 months ago
Run `npm install` to install the dependencies.
```sh
npm install
```
3 months ago
## Build the app
To build the solution, run `npm run build`.
```sh
3 months ago
npm run build
```
3 months ago
## Run
3 months ago
To run the solution, run `npm run dev`.
```bash
npm run dev
```
3 months ago
## Lint
3 months ago
To ensure the code is linted, run `npm run lint`.
```bash
npm run lint
3 months ago
```