|
|
|
|
|
by impulser_
452 days ago
|
|
If anyone is looking for a good alternate to NextJS, try looking into Tanstack Start. It's currently Beta but it will probably be the best way to build full stack React apps when it hits 1.0 so it might be worth looking into for future apps. You just add a plugin into Vite and gain SSR, streaming, server functions, API routes with minimal configuration. You basically just add a ssr.tsx and client.tsx file into your existing TanStack Router application and it becomes full stack with full type safe. If you want to go back to a React SPA just remove the plugin and config it back to SPA. I built an app with it recently and it has an amazing DX. Best part you can literally run it anywhere. It builds for any platform with a single configuration. |
|