https://github.com/jacob-ebey/bun-remix
Bun + Remix + HMR
https://github.com/jacob-ebey/bun-remix
Last synced: about 1 year ago
JSON representation
Bun + Remix + HMR
- Host: GitHub
- URL: https://github.com/jacob-ebey/bun-remix
- Owner: jacob-ebey
- Created: 2023-06-28T18:53:35.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-06-28T18:55:37.000Z (almost 3 years ago)
- Last Synced: 2025-04-01T20:17:33.268Z (about 1 year ago)
- Language: TypeScript
- Size: 132 KB
- Stars: 43
- Watchers: 4
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Welcome to Remix!
- [Remix Docs](https://remix.run/docs)
## Development
Start the Remix development server and the Bun application server by running:
```sh
bun run dev
```
This starts your app in development mode, performing HMR both on the server and in the browser when Remix rebuilds assets so you don't need a process manager restarting the express server.
## Deployment
First, build your app for production:
```sh
bun run build
```
Then run the app in production mode:
```sh
bun run start
```
Now you'll need to pick a host to deploy it to.