mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 19:08:50 +00:00
49 lines
1.2 KiB
Markdown
49 lines
1.2 KiB
Markdown
---
|
|
name: Build an app with Next.js and Bun
|
|
---
|
|
|
|
Initialize a Next.js app with `create-next-app`. This will scaffold a new Next.js project and automatically install dependencies.
|
|
|
|
```sh
|
|
$ bun create next-app
|
|
✔ What is your project named? … my-app
|
|
✔ Would you like to use TypeScript with this project? … No / Yes
|
|
✔ Would you like to use ESLint with this project? … No / Yes
|
|
✔ Would you like to use `src/` directory with this project? … No / Yes
|
|
✔ Would you like to use experimental `app/` directory with this project? … No / Yes
|
|
✔ What import alias would you like configured? … @/*
|
|
Creating a new Next.js app in /path/to/my-app.
|
|
```
|
|
|
|
---
|
|
|
|
You can specify a starter template using the `--example` flag.
|
|
|
|
```sh
|
|
$ bun create next-app --example with-supabase
|
|
✔ What is your project named? … my-app
|
|
...
|
|
```
|
|
|
|
---
|
|
|
|
To start the dev server with Bun, run `bun --bun run dev` from the project root.
|
|
|
|
```sh
|
|
$ cd my-app
|
|
$ bun --bun run dev
|
|
```
|
|
|
|
---
|
|
|
|
To run the dev server with Node.js instead, omit `--bun`.
|
|
|
|
```sh
|
|
$ cd my-app
|
|
$ bun run dev
|
|
```
|
|
|
|
---
|
|
|
|
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. Any changes you make to `(pages/app)/index.tsx` will be hot-reloaded in the browser.
|