next-pwa VS prism-react-renderer

Compare next-pwa vs prism-react-renderer and see what are their differences.

next-pwa

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

prism-react-renderer

🖌️ Renders highlighted Prism output to React (+ theming & vendored Prism) (by FormidableLabs)
Our great sponsors
  • SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
next-pwa prism-react-renderer
9 13
3,588 1,794
- 1.1%
2.4 7.3
3 months ago 7 days ago
JavaScript TypeScript
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

prism-react-renderer

Posts with mentions or reviews of prism-react-renderer. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-02-13.
  • Starlight vs. Docusaurus for building documentation
    2 projects | dev.to | 13 Feb 2024
    Both frameworks also support code blocks with syntax highlighting. Docusaurus uses prism-react-renderer for theming, while Starlight uses an Astro package called expressive-code to control customizations.
  • Is copying from open source projects stealing?
    3 projects | dev.to | 31 Oct 2023
    In my previous blog post on Code Reading, I read the codebase of Docusaurus to research how the project implements Syntax Highlighting for fenced code blocks. My research taught me that Docusaurus actually uses Prism-React-Renderer, a third-party library, to provide Syntax Highlighting. This knowledge was useful because I wanted to add syntax highlighting to ctil, my Markdown-to-HTML converter, but didn't want to implement the feature from scratch. Although I can't use Prism React Renderer in my own project, researching Docusaurus gave me the idea to find a Open Source library I could use.
  • How to embed live code editor for React components in MDX docs
    4 projects | dev.to | 14 Dec 2022
    For non-live codeBlock, you may want to render it by prism-react-renderer which is working also under the LiveEditor. I'm not sure what is the best way to share the style and theme between them but do so anyhow.
  • Adding Syntax Highlighting with Line Numbers to Gatsby MDX Using prism-react-renderer
    2 projects | dev.to | 26 Mar 2022
    If you already haven’t integrated MDX into your project (you should because MDX is awesome), here’s the official guide on Gatsby's documentation to add it to your project. However, if you are already using Markdown Remark in your project, consider Migrating to MDX. In this post, we will integrate PrismJS syntax highlighting with MDX using prism-react-renderer. Also, we are going to add line numbers to code blocks. This is what we are aiming for:
  • How I built my second brain using Next.JS
    2 projects | dev.to | 8 Jan 2022
    Syntax Highlighting - Nextra comes with in-built syntax highlighting. However, when I created my site the syntax highlighting feature doesn’t seem to be working. So, I ended up creating my own syntax-highlighting component with prism-react-renderer.
  • Make Better Blog Posts with Beautiful Syntax Highlighting in Nextjs with React-Prism-Render
    1 project | dev.to | 29 Nov 2021
    If you have a Nextjs blog (or any React Framework blog) and want to create beautiful code blocks out of your MDX posts, then this post will show you how to do that using prism-react-renderer.
  • Contributing to IPC144 Repo
    2 projects | dev.to | 20 Nov 2021
    To fix it, I just went to this repo, specifically to prism-react-renderer/themes/ and checked the available themes I could use, and found out that the Visual Studio themes looked the best for my purpose.
  • Getting simple code syntax highlighting
    4 projects | /r/nextjs | 8 Nov 2021
    From memory you need to target the `pre` block so you can apply the styles/theme to them. I uses prism-react-renderer.
  • Language Tabs for Markdown & MDX Code Blocks
    1 project | dev.to | 6 Aug 2021
    Integrating syntax highlighting in Gatsby is solvable with solutions like gatsby-remark-prismjs or prism-react-renderer. When creating the code block in Markdown you specify the desired language (e.g. js or css) after the opening three backticks. It's a nice touch to display the specified language also in the code block itself, like I do it on my blog here:
  • Adding Line Numbers and Code Highlighting to MDX
    2 projects | dev.to | 6 Aug 2021
    In this very short quick tip you'll learn how to set up code blocks in MDX and Gatsby that support line numbers and code highlighting using the code renderer prism-react-renderer. A preview can be found on CodeSandbox.

What are some alternatives?

When comparing next-pwa and prism-react-renderer you can also consider the following projects:

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

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

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

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

Next.js - The React Framework

nextjs-prism-markdown - Example using Prism / Markdown with Next.js including switching syntax highlighting themes.

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

PrismJS - Lightweight, robust, elegant syntax highlighting.

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

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

rehype - HTML processor powered by plugins part of the @unifiedjs collective