Skip to content
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

Closed
meticoeus opened this issue Jul 12, 2022 · 9 comments · Fixed by #7597
Closed

Service Worker Compilation during Development #5479

meticoeus opened this issue Jul 12, 2022 · 9 comments · Fixed by #7597
Labels
feature request New feature or request service worker Stuff related to service workers
Milestone

Comments

@meticoeus
Copy link
Contributor

meticoeus commented Jul 12, 2022

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.

@Rich-Harris
Copy link
Member

Would the following caveats be acceptable, if it meant you could use the service worker in development?

  • only works in Chrome, because other browsers don't support import inside service workers
  • build is an empty array

@meticoeus
Copy link
Contributor Author

meticoeus commented Jul 12, 2022

Both would be fine. Testing other browsers against the production build only seems reasonable.

@Rich-Harris Rich-Harris added the feature request New feature or request label Jul 12, 2022
@Rich-Harris Rich-Harris added this to the 1.0 milestone Jul 12, 2022
@benmccann
Copy link
Member

The currently released version vite-plugin-pwa is quite difficult to setup with SvelteKit at the moment as SvelteKit historically had some limitations around using it. I've been working with the author to fix most of those and the next version of vite-plugin-pwa should be quite a bit easier to setup. You can watch vite-pwa/vite-plugin-pwa#327 for updates (it still needs some more work to incorporate the most recent SvelteKit changes).

@meticoeus
Copy link
Contributor Author

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.

@Rich-Harris
Copy link
Member

Yeah, I definitely think we should support it. I have an idea for how it could work

@benmccann benmccann added the service worker Stuff related to service workers label Aug 8, 2022
@Giszmo
Copy link

Giszmo commented Sep 5, 2022

What would be needed to make npm run build && npm preview kill and restart itself when a file changed? Is there some fancy linux one-liner meanwhile?

Edit: something something while true; do ... inotifywait --event modify --recursive --exclude build/ . && kill ... & npm run build && npm preview?

@AlbertMarashi
Copy link

Any news on this? It's really annoying to develop the service worker without it working on dev mode

@ZetiMente
Copy link

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/

@alanxp
Copy link

alanxp commented Oct 20, 2022

Any news on this? It's really annoying to develop the service worker without it working on dev mode

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

Rich-Harris added a commit that referenced this issue Nov 11, 2022
* dev time service workers - closes #5479

* fixes

* dear Rich, meet your good friend Windows

Co-authored-by: Simon Holthausen <simon.holthausen@vercel.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature request New feature or request service worker Stuff related to service workers
Projects
None yet
Development

Successfully merging a pull request may close this issue.

7 participants