react-on-the-edge
                                
                                 react-on-the-edge copied to clipboard
                                
                                    react-on-the-edge copied to clipboard
                            
                            
                            
                        Server-rendered React using Vercel Edge Functions.
React on the Edge
sveltekit-on-the-edge but on top of React. It uses esbuild for bundling and Vercel Edge Functions for SSR.
This example is for framework builders and advanced usage of the low-level Vercel Build Output API. If you're looking to develop a React application with dynamic Edge capabilities, we recommend Next.js Middleware and Vercel Edge Functions.
How to use
Run pnpm i then:
- To build: pnpm build
- To run a local server: pnpm start
To build this demo with streaming (renderToStream) instead of renderToString run USE_STREAMS=1 pnpm build.
After building, .vercel/output will be created which you can deploy via vc --prebuilt.
Architecture
- util/build.mjsimplements the build process on top of- esbuildthat bundles- src/appinto an Edge Function.
- util/start.mjsimplements a local server using the- edge-runtimepackage that can locally run the build outputs.
Developing
Due to the absence of a dev server, watchexec can be used as a replacement. Use brew install watchexec to install.
watchexec -c -r --no-meta 'node util/build.mjs; node util/start.mjs'