-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Service Worker Compilation during Development #5479
Comments
Would the following caveats be acceptable, if it meant you could use the service worker in development?
|
Both would be fine. Testing other browsers against the production build only seems reasonable. |
The currently released version |
The only feature I need is the ability to run custom service worker code (not pwa things) in dev mode. Is there any appetite for supporting that in SvelteKit at some point? The current service-worker behavior does everything I need it to except working in dev mode. I'm not sure the friction of swapping to the vite plugin would be worth the effort unless it gets to a point that it is fairly painless. |
Yeah, I definitely think we should support it. I have an idea for how it could work |
What would be needed to make Edit: something something |
Any news on this? It's really annoying to develop the service worker without it working on dev mode |
Looks like you can do it with the plugin: https://vite-pwa-org.netlify.app/guide/ |
Definitely, it is painful having to build, then preview to test a service worker. I'm glad it is labelled with an enhancement tag. But is there any progress with this? Thanks in advance |
* dev time service workers - closes #5479 * fixes * dear Rich, meet your good friend Windows Co-authored-by: Simon Holthausen <simon.holthausen@vercel.com>
Describe the problem
Testing non-trivial service-worker features in a Sveltekit app is currently pretty painful. The most success I've had is using
npm run build && npm preview
after every code change, losing the utility of dev mode when testing features that rely on the service-worker.As far as I've been able to find, Sveltekit only supports building the service-worker in a production build.
Describe the proposed solution
Add a config option to enable building the service-worker in development mode, i.e. when running
npm run dev
. This should skip pre-caching (or provide a way for the user to skip serving cached files) and only load additional functionality from the user's service-worker.Alternatives considered
vite-plugin-pwa appears to support building in development but not for Sveltekit (at least by default, maybe there is a way to configure it to do so?) and also looks like it would add additional configuration to maintain to get it work as well as the built-in SW support.
Importance
would make my life easier
Additional Information
I am currently building/maintaining an app that makes extensive use of the service-worker to enable offline functionality. It hosts a small graphql server at /graphql as a single source of truth for pages to get data from. It is not proxying a "real" graphql server and instead fetches data from multiple places to store in IndexedDB, then queries IDB in the resolvers. It also handles an offline-capable file upload system, uploading files to the server when network service is available.
As a result. most of the app does not work well in dev. Sometimes I can use build-then-preview to get localhost to load the service worker, then stop preview and start dev and the page will start live-loading changes to non-service-worker code but this is flaky; if the SW gets unloaded the app needs to be (possibly rebuilt,) previewed, and swapped back to dev again.
If anyone has an alternative to get SWs working in dev I'd be glad to hear it.
The text was updated successfully, but these errors were encountered: