28 lines
335 B
Markdown
28 lines
335 B
Markdown
## Getting Started
|
|
|
|
First, install dependencies.
|
|
|
|
```bash
|
|
npm install
|
|
# or
|
|
yarn install
|
|
# or
|
|
pnpm install
|
|
# or
|
|
bun install
|
|
```
|
|
|
|
After that, run the following command:
|
|
|
|
```bash
|
|
npm run dev
|
|
# or
|
|
yarn run dev
|
|
# or
|
|
pnpm run dev
|
|
# or
|
|
bun run dev
|
|
```
|
|
|
|
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
|