rsnext/examples/with-service-worker
Nick Babcock 5629223407
Update examples to use React 17 (#26133)
[With next 11 requiring react 17](https://nextjs.org/blog/next-11#upgrade-guide), most of the examples
need to be updated, so the following snippet updated all the examples to
a compatible react version.

```bash
cd examples/
fd -g 'package.json' | xargs sed -r -i 's/"react": ".*"/"react": "^17.0.2"/
fd -g 'package.json' | xargs sed -r -i 's/"react-dom": ".*"/"react-dom": "^17.0.2"/'

# exclude experimental react version
git checkout with-reason-relay/package.json
```
2021-06-16 16:43:26 +00:00
..
pages Example for adding a service worker into a next.js application (#17855) 2020-11-12 01:09:25 +00:00
public Example for adding a service worker into a next.js application (#17855) 2020-11-12 01:09:25 +00:00
.gitignore Example for adding a service worker into a next.js application (#17855) 2020-11-12 01:09:25 +00:00
package.json Update examples to use React 17 (#26133) 2021-06-16 16:43:26 +00:00
README.md Update links that go to vercel.com/now (#21556) 2021-01-26 18:59:01 +00:00

Service Worker Example

This example shows how to add a simple service worker to a Next.js application. The service worker is in public/sw.js and it's installed by pages/_app.js after the first render.

The example is based on the following blog post: Adding a service worker into your Next.js application.

Deploy your own

Deploy the example using Vercel:

Deploy with Vercel

How to use

Execute create-next-app with npm or Yarn to bootstrap the example:

npx create-next-app --example with-service-worker with-service-worker-app
# or
yarn create next-app --example with-service-worker with-service-worker-app

Deploy it to the cloud with Vercel (Documentation).