next-pwa

Zero config PWA plugin for Next.js, with workbox ๐Ÿงฐ (by shadowwalker)

Next-pwa Alternatives

Similar projects and alternatives to next-pwa

  1. Next.js

    2,283 next-pwa VS Next.js

    The React Framework

  2. CodeRabbit

    CodeRabbit: AI Code Reviews for Developers. Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.

    CodeRabbit logo
  3. obsidian-releases

    Community plugins list, theme list, and releases of Obsidian.

  4. syncthing-android

    Discontinued Wrapper of syncthing for Android.

  5. react-hook-form

    241 next-pwa VS react-hook-form

    ๐Ÿ“‹ React Hooks for form state management and validation (Web + React Native)

  6. sharp

    106 next-pwa VS sharp

    High performance Node.js image processing, the fastest module to resize JPEG, PNG, WebP, AVIF and TIFF images. Uses the libvips library.

  7. nanoid

    87 next-pwa VS nanoid

    A tiny (124 bytes), secure, URL-friendly, unique string ID generator for JavaScript

  8. next-seo

    33 next-pwa VS next-seo

    Next SEO is a plug in that makes managing your SEO easier in Next.js projects.

  9. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
  10. next-i18next

    29 next-pwa VS next-i18next

    The easiest way to translate your NextJs apps.

  11. uuid

    19 next-pwa VS uuid

    Generate RFC-compliant UUIDs in JavaScript

  12. next-mdx-remote

    20 next-pwa VS next-mdx-remote

    Load MDX content from anywhere

  13. rehype

    18 next-pwa VS rehype

    HTML processor powered by plugins part of the @unifiedjs collective

  14. use-dark-mode

    11 next-pwa VS use-dark-mode

    A custom React Hook to help you implement a "dark mode" component.

  15. prism-react-renderer

    ๐Ÿ–Œ๏ธ Renders highlighted Prism output to React (+ theming & vendored Prism)

  16. next-optimized-images

    ๐ŸŒ… next-optimized-images automatically optimizes images used in next.js projects (jpeg, png, svg, webp and gif).

  17. next-offline

    2 next-pwa VS next-offline

    make your Next.js application work offline using service workers via Google's workbox

  18. next-sitemap

    10 next-pwa VS next-sitemap

    Sitemap generator for next.js. Generate sitemap(s) and robots.txt for all static/pre-rendered/dynamic/server-side pages.

  19. Sentry-Picam

    2 next-pwa VS Sentry-Picam

    A simple wildlife camera for Raspberry Pis.

  20. Image-to-Braille

    Give it an image, and it will become unicode braille

  21. sqlite-worker

    1 next-pwa VS sqlite-worker

    A simple, and persistent, SQLite database for Web and Workers.

  22. rehype-prism

    2 next-pwa VS rehype-prism

    Discontinued rehype plugin to highlight code blocks in HTML with Prism (via refractor)

  23. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better next-pwa alternative or higher similarity.

next-pwa discussion

Log in or Post with

next-pwa reviews and mentions

Posts with mentions or reviews of next-pwa. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2025-01-29.
  • 10 Awesome NextJS Libraries That Make Coding Easier
    9 projects | dev.to | 29 Jan 2025
    next-pwa helps convert your Next.js application into a Progressive Web App (PWA) with offline support.
  • Enable PWA with next.js 13 or later using next-pwa (disabled in development environment)
    1 project | dev.to | 27 May 2023
    /** @type {import('next').NextConfig} */ const path = require("path"); const isDev = process.env.NODE_ENV !== "production"; const withPWA = require("next-pwa")({ dest: "public", disable: isDev, buildExcludes: ["app-build-manifest.json"], }); const generateAppDirEntry = (entry) => { const packagePath = require.resolve("next-pwa"); const packageDirectory = path.dirname(packagePath); const registerJs = path.join(packageDirectory, "register.js"); return entry().then((entries) => { // Register SW on App directory, solution: https://github.com/shadowwalker/next-pwa/pull/427 if (entries["main-app"] && !entries["main-app"].includes(registerJs)) { if (Array.isArray(entries["main-app"])) { entries["main-app"].unshift(registerJs); } else if (typeof entries["main-app"] === "string") { entries["main-app"] = [registerJs, entries["main-app"]]; } } return entries; }); }; const nextConfig = { experimental: { appDir: true, }, reactStrictMode: true, webpack(config) { if( !isDev ){ const entry = generateAppDirEntry(config.entry); config.entry = () => entry; } return config; }, }; module.exports = withPWA(nextConfig);
  • Show HN: Duck, a chat-based note app for your knowledge base
    3 projects | news.ycombinator.com | 24 Apr 2023
    Thank you for trying it and asking questions. Let me reply to them below.

    > Could you give a brief overview of how the project is built, or what libraries are used? I found two in the source, React and Workbox. I've never heard of Workbox before, and I'm still figuring out how service workers are used. But it seems like a big part of the source.

    For building, I used Next.js with static generation, not using Server-side rendering. But it's not an important part because it doesn't rely on Next.js features so much.

    About Workbox, the app uses them with next-pwa (https://github.com/shadowwalker/next-pwa) for providing caching strategies and offline behavior as Progressive Web App. For example, the app registers several precached files via Workbox. Precached files are fetched and cached by the service worker and these caches can be used while offline. Also, Workbox can configure runtime caching strategies. You can see details in Workbox documentation (https://developer.chrome.com/docs/workbox/).

    The app also uses the Service Worker to connect IndexedDB as a local database and send HTTP requests to synchronize data with Google Drive. By using the Service Worker, these methods don't block the user interaction from the main thread and Service Worker can run in the background to synchronize data even if the browser window is suddenly closed.

  • PWA support in NextJs
    2 projects | /r/codehunter | 1 May 2022
    We tried to use next-offline and next-pwa, but we were only able to precache the static assets.
  • Precaching pages with next-pwa
    4 projects | dev.to | 22 Nov 2021
    It's possible that next-pwa might support precaching pages in the future. Subscribe to issue 252 to keep up to date on that.
  • Question about Nextjs and CRA PWA
    1 project | /r/reactjs | 27 Oct 2021
    I am currently using the opt-in integration for the CRA pwa. I kind of wanted to test out migrating to Next. I know NextJs has a pwa plugin. Does anyone have any experience migrating with this in mind (from cra to next)?
  • Does anyone have any experience with making PWAs in Next?
    4 projects | /r/nextjs | 13 Apr 2021
    There's next-offline and next-pwa (and some comparison too). But has anyone here made a PWA with NextJS? Now I am not only referring to service workers/offline functionality, but also icons, adding to homescreen, manifest, and other PWA features. Does anyone have any good examples or guides to refer to?
  • I over-engineered my blog, and hereโ€™s what Iโ€™ve learned
    8 projects | dev.to | 5 Jan 2021
    next-pwa, for PWA support.
  • tmp.spacet.me devlog part 1
    3 projects | dev.to | 27 Dec 2020
    shadowwalker/next-pwa#132 improves error messages
  • A note from our sponsor - SaaSHub
    www.saashub.com | 18 Mar 2025
    SaaSHub helps you find the best software and product alternatives Learn more โ†’

Stats

Basic next-pwa repo stats
10
3,954
0.5
8 months ago

Sponsored
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
coderabbit.ai

Did you know that JavaScript is
the 3rd most popular programming language
based on number of references?