> ## Documentation Index
> Fetch the complete documentation index at: https://bun-1dd33a4e-farm-e658f71f-system-wide-bunfig.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Build an app with Next.js and Bun

[Next.js](https://nextjs.org/) is a React framework for building full-stack web applications. It supports server-side rendering, static site generation, and API routes. Bun installs packages fast and can run Next.js development and production servers.

***

<Steps>
  <Step title="Create a new Next.js app">
    Use the interactive CLI to scaffold a new Next.js project and install its dependencies.

    ```sh terminal icon="terminal" theme={"theme":{"light":"github-light","dark":"dracula"}}
    bun create next-app@latest my-bun-app
    ```
  </Step>

  <Step title="Start the dev server">
    Change to the project directory and run the dev server with Bun.

    ```sh terminal icon="terminal" theme={"theme":{"light":"github-light","dark":"dracula"}}
    cd my-bun-app
    bun --bun run dev
    ```

    This starts the Next.js dev server with Bun's runtime.

    Open [`http://localhost:3000`](http://localhost:3000) in your browser to see the result. Changes you make to `app/page.tsx` are hot-reloaded in the browser.
  </Step>

  <Step title="Update scripts in package.json">
    Prefix the Next.js CLI commands in your `package.json` scripts with `bun --bun` so that Bun executes the Next.js CLI for `dev`, `build`, and `start`.

    ```json package.json icon="file-json" theme={"theme":{"light":"github-light","dark":"dracula"}}
    {
      "scripts": {
        "dev": "bun --bun next dev", // [!code ++]
        "build": "bun --bun next build", // [!code ++]
        "start": "bun --bun next start" // [!code ++]
      }
    }
    ```
  </Step>
</Steps>

***

## Hosting

<Columns cols={3}>
  <Card title="Vercel" href="/guides/deployment/vercel" icon="https://mintcdn.com/bun-1dd33a4e-farm-e658f71f-system-wide-bunfig/NW8Sk37syP0KIejK/icons/ecosystem/vercel.svg?fit=max&auto=format&n=NW8Sk37syP0KIejK&q=85&s=a79c0da4625f417388c38f7b842518cf" width="24" height="24" data-path="icons/ecosystem/vercel.svg">
    Deploy on Vercel
  </Card>

  <Card title="Railway" href="/guides/deployment/railway" icon="https://mintcdn.com/bun-1dd33a4e-farm-e658f71f-system-wide-bunfig/NW8Sk37syP0KIejK/icons/ecosystem/railway.svg?fit=max&auto=format&n=NW8Sk37syP0KIejK&q=85&s=4247773c979301d79948269841fcdd6c" width="24" height="24" data-path="icons/ecosystem/railway.svg">
    Deploy on Railway
  </Card>

  <Card title="DigitalOcean" href="/guides/deployment/digital-ocean" icon="https://mintcdn.com/bun-1dd33a4e-farm-e658f71f-system-wide-bunfig/NW8Sk37syP0KIejK/icons/ecosystem/digitalocean.svg?fit=max&auto=format&n=NW8Sk37syP0KIejK&q=85&s=37b47bce9d2bcdd5df6c093acfc7265a" width="24" height="24" data-path="icons/ecosystem/digitalocean.svg">
    Deploy on DigitalOcean
  </Card>

  <Card title="AWS Lambda" href="/guides/deployment/aws-lambda" icon="https://mintcdn.com/bun-1dd33a4e-farm-e658f71f-system-wide-bunfig/NW8Sk37syP0KIejK/icons/ecosystem/aws.svg?fit=max&auto=format&n=NW8Sk37syP0KIejK&q=85&s=e56d65abbf87fcc86ef2385c9f391f08" width="24" height="24" data-path="icons/ecosystem/aws.svg">
    Deploy on AWS Lambda
  </Card>

  <Card title="Google Cloud Run" href="/guides/deployment/google-cloud-run" icon="https://mintcdn.com/bun-1dd33a4e-farm-e658f71f-system-wide-bunfig/NW8Sk37syP0KIejK/icons/ecosystem/gcp.svg?fit=max&auto=format&n=NW8Sk37syP0KIejK&q=85&s=949919f86e20e66d290ff5ce5cfc480c" width="24" height="24" data-path="icons/ecosystem/gcp.svg">
    Deploy on Google Cloud Run
  </Card>

  <Card title="Render" href="/guides/deployment/render" icon="https://mintcdn.com/bun-1dd33a4e-farm-e658f71f-system-wide-bunfig/NW8Sk37syP0KIejK/icons/ecosystem/render.svg?fit=max&auto=format&n=NW8Sk37syP0KIejK&q=85&s=be81e016f42e89110b0e17ae8a7744a6" width="24" height="24" data-path="icons/ecosystem/render.svg">
    Deploy on Render
  </Card>
</Columns>

***

## Templates

<Columns cols={2}>
  <Card title="Bun + Next.js Basic Starter" img="https://mintcdn.com/bun-1dd33a4e-farm-e658f71f-system-wide-bunfig/NW8Sk37syP0KIejK/images/templates/bun-nextjs-basic.png?fit=max&auto=format&n=NW8Sk37syP0KIejK&q=85&s=bb08ec6deba014cfd3096ad51c772ae3" href="https://github.com/bun-templates/bun-nextjs-basic" arrow="true" cta="Go to template" width="2212" height="1326" data-path="images/templates/bun-nextjs-basic.png">
    A basic App Router starter with Bun, Next.js, and Tailwind CSS.
  </Card>

  <Card title="Todo App with Next.js + Bun" img="https://mintcdn.com/bun-1dd33a4e-farm-e658f71f-system-wide-bunfig/NW8Sk37syP0KIejK/images/templates/bun-nextjs-todo.png?fit=max&auto=format&n=NW8Sk37syP0KIejK&q=85&s=7e36bd17a75b94805f33207bdd3e9645" href="https://github.com/bun-templates/bun-nextjs-todo" arrow="true" cta="Go to template" width="2212" height="1326" data-path="images/templates/bun-nextjs-todo.png">
    A full-stack todo application built with Bun, Next.js, and PostgreSQL.
  </Card>
</Columns>

***

Refer to the [Next.js documentation](https://nextjs.org/docs) for more on building and deploying Next.js applications.
