Marbiano.dev
Build and deploy applications using Cloudflare Workers with the Remix framework. It supports running a local development environment and facilitates the deployment process with easy commands.
Author

martinbavio
No License
Quick Info
Tools 1
Last Updated 13/7/2025
Actions
Tags
dev developer tools developer tools tools integrations dev build
Welcome to Remix!
Development
You will be running two processes during development when using Vercel as your server.
- Your Miniflare server in one (miniflare is a local environment for Cloudflare Workers)
- The Remix development server in another
# in one tab (starts remix dev server)
$ npm run dev
# in another (starts miniflare server)
$ npm start
Open up http://127.0.0.1:8787 and you should be ready to go!
If you'd rather run everything in a single tab, you can look at concurrently or similar tools to run both processes in one tab.
Deployment
Use wrangler to build and deploy your application to Cloudflare Workers:
npm run deploy