diff options
author | 2023-08-03 16:31:05 -0700 | |
---|---|---|
committer | 2023-08-03 16:31:05 -0700 | |
commit | 112030481f3d89bb45cf9cecb2b21530bb53398c (patch) | |
tree | e2d57f7bd56179a2c6d84c4a7a18ef59b59f660a /docs/guides/ecosystem/nextjs.md | |
parent | 9574db355f1435f60214726b21f1ca5bb9d13f6c (diff) | |
download | bun-112030481f3d89bb45cf9cecb2b21530bb53398c.tar.gz bun-112030481f3d89bb45cf9cecb2b21530bb53398c.tar.zst bun-112030481f3d89bb45cf9cecb2b21530bb53398c.zip |
More guides and fixing links (#3960)bun-v0.7.2
* More guides
* WIP
* Updates
* Fix
Diffstat (limited to 'docs/guides/ecosystem/nextjs.md')
-rw-r--r-- | docs/guides/ecosystem/nextjs.md | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/docs/guides/ecosystem/nextjs.md b/docs/guides/ecosystem/nextjs.md new file mode 100644 index 000000000..b8b45ca59 --- /dev/null +++ b/docs/guides/ecosystem/nextjs.md @@ -0,0 +1,31 @@ +--- +name: Build an app with Next.js and Bun +--- + +{% callout %} +Next.js currently relies on Node.js APIs that Bun does not yet implement. The guide below uses Bun to initialize a project and install dependencies, but it uses Node.js to run the dev server. +{% /callout %} + +--- + +Initialize a Next.js app with `create-next-app`. This automatically installs dependencies using `npm`. + +```sh +$ bunx 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. +``` + +--- + +To start the dev server, run `bun run dev` from the project root. + +```sh +$ cd my-app +$ bun run dev +``` |