# Build an app with Remix and Bun (/docs/guides/ecosystem/remix)

<!-- agent-signals: reading_time_min: 1 · est_tokens: 491 · updated: 2026-07-28 -->
Related: [Build an app with Astro and Bun](/docs/guides/ecosystem/astro.md), [Create a Discord bot](/docs/guides/ecosystem/discordjs.md), [Containerize a Bun application with Docker](/docs/guides/ecosystem/docker.md), [Use Drizzle ORM with Bun](/docs/guides/ecosystem/drizzle.md), [Use Gel with Bun](/docs/guides/ecosystem/gel.md), [Build an HTTP server using Elysia and Bun](/docs/guides/ecosystem/elysia.md)

<Note>
  The Remix development server (`remix dev`) relies on Node.js APIs that Bun does not implement. This guide uses Bun to
  initialize the project and install dependencies, and Node.js to run the dev server.
</Note>

***

Initialize a Remix app with `create-remix`.

```sh terminal icon="terminal"
bun create remix
```

```txt
 remix   v1.19.3 💿 Let's build a better website...

   dir   Where should we create your new project?
         ./my-app

      ◼  Using basic template See https://remix.run/docs/en/main/guides/templates#templates for more
      ✔  Template copied

   git   Initialize a new git repository?
         Yes

  deps   Install dependencies with bun?
         Yes

      ✔  Dependencies installed
      ✔  Git initialized

  done   That's it!
         Enter your project directory using cd ./my-app
         Check out README.md for development and deploy instructions.
```

***

To start the dev server, run `bun run dev` from the project root. This runs the `remix dev` command with Node.js.

```sh terminal icon="terminal"
cd my-app
bun run dev
```

```txt
$ remix dev

💿  remix dev

info  building...
info  built (263ms)
Remix App Server started at http://localhost:3000 (http://172.20.0.143:3000)
```

***

Open [http://localhost:3000](http://localhost:3000) to see the app. Changes you make to `app/routes/_index.tsx` are hot-reloaded in the browser.

<Frame>
  ![Remix app running on localhost](https://github.com/oven-sh/bun/assets/3084745/c26f1059-a5d4-4c0b-9a88-d9902472fd77)
</Frame>

***

To build your app, run `bun run build`.

```sh terminal icon="terminal"
bun run build
```

```txt
$ remix build
info  building... (NODE_ENV=production)
info  built (158ms)
```

Then start the app from the project root.

```sh terminal icon="terminal"
bun start
```

```txt
$ remix-serve ./build/index.js
[remix-serve] http://localhost:3000 (http://192.168.86.237:3000)
```

***

See the [Remix docs](https://remix.run/) to learn more.
