next-pwa VS use-dark-mode

Compare next-pwa vs use-dark-mode and see what are their differences.

next-pwa

Zero config PWA plugin for Next.js, with workbox 🧰 (by shadowwalker)

use-dark-mode

A custom React Hook to help you implement a "dark mode" component. (by donavon)
Our great sponsors
  • SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
next-pwa use-dark-mode
9 11
3,592 1,276
- -
2.4 0.0
3 months ago over 1 year ago
JavaScript JavaScript
MIT License MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

next-pwa

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 2023-04-24.
  • 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

use-dark-mode

Posts with mentions or reviews of use-dark-mode. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-03-30.
  • Flashing Theme Selection
    3 projects | /r/nextjs | 30 Mar 2023
  • How to implement a dark to light mode feature in your React/Sass project
    2 projects | dev.to | 16 May 2022
    We will be using an npm package called use-dark-mode which is a custom hook used to implement the toggle functionality between light and dark mode.
  • Help me reach Lighthouse 100 performance score
    2 projects | /r/nextjs | 4 May 2022
    you can implement this script https://github.com/donavon/use-dark-mode/blob/develop/noflash.js.txt
  • PrimeReact - switch themes without ejecting?
    4 projects | /r/reactjs | 5 Apr 2022
    the useEffect hook expects a value for dark mode which in my case I just use use-dark-mode hook .
  • Theming made easy with React and Styled Components
    2 projects | dev.to | 15 Feb 2022
    But we may want to allow users to choose between light and dark modes within the app UI and save the preferences. We can achieve this by injecting a simple script right after , reading the local storage, and setting the class name for light/dark mode on the HTML element. We could try to come up with something ourselves, or we can use this React hook that will do it for us.
  • Underrated React Hooks
    2 projects | dev.to | 9 May 2021
    For this hook, I am not going to show the code that makes the hook because it's a little more advanced, but you can check it out here. Nonetheless, I will still show you how to use it once it has been defined. This hook actually returns an object with the value and the functions required to toggle, enable, and disable dark mode, but it's still the same concept just written in a different way. You will need to write a little CSS to configure how your light mode and dark mode will look, but the toggling can be handled by the hook.
  • Can't Fix React Dark Mode Flashing
    1 project | /r/react | 30 Mar 2021
    I'm facing a frustrating issue with implementing dark mode into my React application. My app reads from localStorage and applies the preferred theme (this is all done by use-dark-mode). Unfortunately, everytime the user opens the page, the default theme flashes before dark mode is enabled.
  • ReScript: FFI basics in React
    3 projects | dev.to | 9 Mar 2021
    Binding to a React hook is like binding to any other function. Here's an example of a binding to use-dark-mode.
  • Tailwind CSS and useDarkMode hook
    3 projects | dev.to | 17 Feb 2021
    For activiating the .dark class, I'm using the excellent useDarkMode hook by Donavon West which you'll need to install:
  • Minimalist Portfolio - Landing Page
    1 project | dev.to | 10 Jan 2021
    I had started implementation using Theme Context when I discovered use-dark-mode. They had all my requirements in a single hook, so why re-invent the wheel?

What are some alternatives?

When comparing next-pwa and use-dark-mode you can also consider the following projects:

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

prism-react-renderer - 🖌️ Renders highlighted Prism output to React (+ theming & vendored Prism)

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

next-themes - Perfect Next.js dark mode in 2 lines of code. Support System preference and any other theme with no flashing

Next.js - The React Framework

react-markdown - Markdown component for React

sqlite-worker - A simple, and persistent, SQLite database for Web and Workers.

eOS-DarkModeStopGap - elementaryOS's Pantheon leaves things to be desired when it comes to the universal application of the dark theme. This Node.js script tries to fill those gaps using workarounds.

Sentry-Picam - A simple wildlife camera for Raspberry Pis.

Light-Dark-Theme-Starter-Code - This is the starter code for a demo app showing people how to add light/dark theme toggle using React and SCSS

next-mdx-remote - Load mdx content from anywhere through getStaticProps in next.js

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