DEV Community

Discussion on: [RANT] Why the hell does everything cool in JavaScript have to be locked behind needing server?

Collapse
 
besworks profile image
Besworks

You could use Cloudflare Workers to host your files for free. As with many other Web APIs, service workers are tied to a domain. When a user visits your page, your worker is installed in the browser and and acts as a kind of proxy. Future requests are then served directly from cache enabling offline access.

Thread Thread
 
baenencalin profile image
Calin Baenen

Huh. Neat.