https://github.com/marbemac/bunsploration
Example app setups, focused on Bun + SPA/SSR.
https://github.com/marbemac/bunsploration
Last synced: 8 months ago
JSON representation
Example app setups, focused on Bun + SPA/SSR.
- Host: GitHub
- URL: https://github.com/marbemac/bunsploration
- Owner: marbemac
- Created: 2023-09-25T17:08:18.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-09-25T17:10:18.000Z (over 2 years ago)
- Last Synced: 2025-09-29T12:40:03.782Z (8 months ago)
- Language: TypeScript
- Size: 143 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# bunsploration
A set of example apps that explore the some of the latest app building patterns.
**Examples:**
- [x] `remix-basic`: Remix + bun's built in http server
- [x] `remix-elysia`: Remix + elysia driving the http server
- [ ] `remix-elysia-query`: Remix + elysia driving the http server + react-query
- [ ] `vite-elysia-tanstack`: Vite + elysia + tanstack-router + react-query
- [ ] `vinxi-*`: we'll see...
## Prereq
Install https://bun.sh. Must be at least `v1.0.3`.
## Development
From your terminal:
```sh
bun {example-app-folder-name} dev
# For example...
bun remix-basic dev
```
This starts your app in development mode, rebuilding assets on file changes.
## Deployment
First, build your app for production:
```sh
bun {example-app-folder-name} build
# For example...
bun remix-basic build
```
Then run the app in production mode:
```sh
bun {example-app-folder-name} start
# For example...
bun remix-basic start
```