Remix is a full-stack React framework built on web standards. Deploy it with loaders, actions, and nested routing on a real server — no adapter juggling required.
Remix is great for web-standards apps, but its adapter-based deployment adds needless complexity.
Recommended plan for Remix
Use @remix-run/express for the simplest deployment. InstaPods runs your server entry point (server.js or server.ts) directly with Node.
Remix outputs to build/server and build/client. InstaPods serves static assets from build/client and runs the server bundle for SSR automatically.
Access server-side env vars in loaders and actions via process.env. Set them in the InstaPods dashboard — no .env file needed on the server.
One command. Real server. HTTPS included. No DevOps degree required.
Get Started