This is an adaptation of remix-movies.pages.dev as requested by Ryan Florence:
It's mostly the same, but has a couple of differences:
.json
file, so that it runs anywhereOkay, the app is pretty basic. The original was showcasing Remix's brand new clientLoader
functionality, which allows routes to be populated with data in memory (rather than going back to the server all the time).
SvelteKit has had this functionality since day one, in the form of universal (as opposed to server) load
functions. The details of the design are slightly different, but the outcome is basically the same — by lazily downloading the entire dataset for the application, it's possible to search and navigate entirely client-side.
I built this in about 45 minutes while distracted by other things; I may have missed a couple of minor details.
Ideally the app would be running on the edge (since the data is just a .json
file), but the data is large enough that it doesn't fit within the 4MB limit for edge functions on Vercel, where the demo is deployed. If I had longer to spend on it I would fix that, but for now it's being served from us-east-1.
Credits and thanks to Ryan and the Remix team for the original demo, and for inviting comparisons from other frameworks.
Clone the repo, install dependencies (this repo uses pnpm but it should work just fine with npm), and do npm run dev
.