# pnpm

Published articles for pnpm.

This is one page of public article previews, not the complete archive. Follow Next page to continue. Summaries are not the original full articles.

## Inside Appwrite's new build cache: 4x faster dependency installs

DevFeed: [Inside Appwrite's new build cache: 4x faster dependency installs](<https://devfeed.tech/articles/inside-appwrite-s-new-build-cache-4x-faster-dependency-installs-16484.md>)

Original publisher: [Read original article](<https://appwrite.io/blog/post/inside-appwrites-new-build-cache>)

Author: Torsten Dittmann

Published: 2026-08-13T00:00:00Z

Content type: article

Language: en

Sources: [Appwrite Blog](<https://devfeed.tech/sources/appwrite-blog.md>)

Topics: [Appwrite](<https://devfeed.tech/topics/appwrite.md>), [Caching](<https://devfeed.tech/topics/caching.md>), [Cache](<https://devfeed.tech/topics/cache.md>), [Deployment](<https://devfeed.tech/topics/deployment.md>), [Next.js](<https://devfeed.tech/topics/next-js.md>), [Package manager](<https://devfeed.tech/topics/package-manager.md>), [Compression](<https://devfeed.tech/topics/compression.md>), [cloud-infrastructure](<https://devfeed.tech/topics/cloud-infrastructure.md>)

Tags: [cache](<https://devfeed.tech/tags/cache.md>), [compression](<https://devfeed.tech/tags/compression.md>), [dependencies](<https://devfeed.tech/tags/dependencies.md>), [deployment](<https://devfeed.tech/tags/deployment.md>), [engineering](<https://devfeed.tech/tags/engineering.md>), [filesystem](<https://devfeed.tech/tags/filesystem.md>), [next-js](<https://devfeed.tech/tags/next-js.md>), [object-storage](<https://devfeed.tech/tags/object-storage.md>), [pnpm](<https://devfeed.tech/tags/pnpm.md>), [production](<https://devfeed.tech/tags/production.md>)

### AI overview

Appwrite's build network caches dependencies between builds for sites and functions. The cache is restored before installation and saved after successful builds, with snapshots isolated per resource. The article explains how Appwrite uses SquashFS images to efficiently store and unpack package-manager data, reporting faster installs for example Next.js applications.

### Source excerpt

A deep dive into how Appwrite now caches your dependencies between builds, and what it means for your deployment times.

## Deploying a PNPM Monorepo to Cloudflare Pages

DevFeed: [Deploying a PNPM Monorepo to Cloudflare Pages](<https://devfeed.tech/articles/deploying-a-pnpm-monorepo-to-cloudflare-pages-21442.md>)

Original publisher: [Read original article](<https://nx.dev/blog/pnpm-monorepo-cloudflare-pages>)

Author: Juri Strumpflohner

Published: 2026-04-21T00:00:00Z

Content type: tutorial

Language: en

Sources: [Juri Strumpflohner](<https://devfeed.tech/sources/juri-strumpflohner.md>)

Topics: [Cloudflare](<https://devfeed.tech/topics/cloudflare.md>), [monorepo](<https://devfeed.tech/topics/monorepo.md>), [GitHub](<https://devfeed.tech/topics/github.md>), [GitHub Actions](<https://devfeed.tech/topics/github-actions.md>), [Deployment](<https://devfeed.tech/topics/deployment.md>), [hosting](<https://devfeed.tech/topics/hosting.md>), [Cache](<https://devfeed.tech/topics/cache.md>)

Tags: [cache](<https://devfeed.tech/tags/cache.md>), [ci](<https://devfeed.tech/tags/ci.md>), [cloudflare](<https://devfeed.tech/tags/cloudflare.md>), [deployment](<https://devfeed.tech/tags/deployment.md>), [github](<https://devfeed.tech/tags/github.md>), [github-actions](<https://devfeed.tech/tags/github-actions.md>), [hosting](<https://devfeed.tech/tags/hosting.md>), [monorepo](<https://devfeed.tech/tags/monorepo.md>), [npm](<https://devfeed.tech/tags/npm.md>), [nx](<https://devfeed.tech/tags/nx.md>), [pnpm](<https://devfeed.tech/tags/pnpm.md>), [workflow](<https://devfeed.tech/tags/workflow.md>)

### AI overview

This tutorial explains how to deploy multiple apps from a pnpm or npm monorepo to Cloudflare Pages using Nx and one generic GitHub Actions workflow. Nx uses the project graph to identify affected apps, while caching avoids unnecessary rebuilds and redeployments.

### Source excerpt

Deploy apps from a pnpm or npm workspace to Cloudflare Pages with one GitHub Actions workflow, using Nx as the task scheduler to rebuild only what changed.

## Sharing Tailwind CSS Styles Across Apps in a PNPM Workspaces Nx Monorepo

DevFeed: [Sharing Tailwind CSS Styles Across Apps in a PNPM Workspaces Nx Monorepo](<https://devfeed.tech/articles/sharing-tailwind-css-styles-across-apps-in-a-pnpm-workspaces-nx-monorepo-21452.md>)

Original publisher: [Read original article](<https://nx.dev/blog/sharing-tailwind-styles-nx-monorepo>)

Author: Juri Strumpflohner

Published: 2026-04-10T00:00:00Z

Content type: tutorial

Language: en

Sources: [Juri Strumpflohner](<https://devfeed.tech/sources/juri-strumpflohner.md>)

Topics: [Tailwind CSS](<https://devfeed.tech/topics/tailwind.md>), [monorepo](<https://devfeed.tech/topics/monorepo.md>), [Web Development](<https://devfeed.tech/topics/web-development.md>), [CSS](<https://devfeed.tech/topics/css.md>)

Tags: [design](<https://devfeed.tech/tags/design.md>), [how-to](<https://devfeed.tech/tags/how-to.md>), [monorepo](<https://devfeed.tech/tags/monorepo.md>), [npm-workspaces](<https://devfeed.tech/tags/npm-workspaces.md>), [nx](<https://devfeed.tech/tags/nx.md>), [pnpm](<https://devfeed.tech/tags/pnpm.md>), [sync-generators](<https://devfeed.tech/tags/sync-generators.md>), [tailwind](<https://devfeed.tech/tags/tailwind.md>), [tailwind-css](<https://devfeed.tech/tags/tailwind-css.md>), [tokens](<https://devfeed.tech/tags/tokens.md>)

### AI overview

A tutorial on sharing Tailwind v4 design tokens across multiple applications in a pnpm or npm workspaces monorepo. It explains how to place shared CSS in a package, consume it from applications, and use Nx sync generators to automate Tailwind source directives based on project dependencies.

### Source excerpt

Share Tailwind v4 design tokens across multiple apps in a pnpm + Nx monorepo using a shared styles package and automated @source directives.

## Docusaurus 3.10

DevFeed: [Docusaurus 3.10](<https://devfeed.tech/articles/docusaurus-3-10-40942.md>)

Original publisher: [Read original article](<https://docusaurus.io/blog/releases/3.10>)

Author: Sébastien Lorber

Published: 2026-04-07T00:00:00Z

Content type: release

Language: en

Sources: [Docusaurus Blog](<https://devfeed.tech/sources/docusaurus-blog.md>)

Topics: [releases](<https://devfeed.tech/topics/releases.md>), [Documentation](<https://devfeed.tech/topics/documentation.md>), [Security](<https://devfeed.tech/topics/security.md>), [supply chain attacks](<https://devfeed.tech/topics/supply-chain-attacks.md>), [GitHub Actions](<https://devfeed.tech/topics/github-actions.md>), [MDX](<https://devfeed.tech/topics/mdx.md>), [npm](<https://devfeed.tech/topics/npm.md>), [OpenID connect (OIDC)](<https://devfeed.tech/topics/oidc.md>), [upgrade](<https://devfeed.tech/topics/upgrade.md>), [monorepo](<https://devfeed.tech/topics/monorepo.md>), [pnpm](<https://devfeed.tech/topics/pnpm.md>)

Tags: [github-actions](<https://devfeed.tech/tags/github-actions.md>), [mdx](<https://devfeed.tech/tags/mdx.md>), [monorepo](<https://devfeed.tech/tags/monorepo.md>), [npm](<https://devfeed.tech/tags/npm.md>), [oidc](<https://devfeed.tech/tags/oidc.md>), [pnpm](<https://devfeed.tech/tags/pnpm.md>), [release](<https://devfeed.tech/tags/release.md>), [security](<https://devfeed.tech/tags/security.md>), [supply-chain-attacks](<https://devfeed.tech/tags/supply-chain-attacks.md>), [upgrade](<https://devfeed.tech/tags/upgrade.md>)

### AI overview

Docusaurus 3.10 is the final release in the v3.x line and prepares sites for Docusaurus v4. It introduces future flags for upcoming breaking changes, makes Docusaurus Faster stable, and adds supply-chain security measures including npm Trusted Publishing, OIDC-based GitHub Actions releases, provenance records, and dependency checks.

### Source excerpt

We are happy to announce Docusaurus 3.10.

## Impact of SHA1-Hulud: The Second Coming on the Mintlify CLI

DevFeed: [Impact of SHA1-Hulud: The Second Coming on the Mintlify CLI](<https://devfeed.tech/articles/impact-of-sha1-hulud-the-second-coming-on-the-mintlify-cli-31088.md>)

Original publisher: [Read original article](<https://www.mintlify.com/blog/sha1-hulud-the-second-coming>)

Author: Han Wang

Published: 2025-11-25T00:00:00Z

Content type: news

Language: en

Sources: [Mintlify Blog](<https://devfeed.tech/sources/mintlify-blog.md>)

Topics: [Command-line interface](<https://devfeed.tech/topics/cli.md>), [npm](<https://devfeed.tech/topics/npm.md>), [malicious packages](<https://devfeed.tech/topics/malicious-packages.md>), [Security](<https://devfeed.tech/topics/security.md>), [pnpm](<https://devfeed.tech/topics/pnpm.md>), [GitHub](<https://devfeed.tech/topics/github.md>), [Cloud](<https://devfeed.tech/topics/cloud.md>)

Tags: [announcements](<https://devfeed.tech/tags/announcements.md>), [deprecated](<https://devfeed.tech/tags/deprecated.md>), [malicious-packages](<https://devfeed.tech/tags/malicious-packages.md>), [npm](<https://devfeed.tech/tags/npm.md>), [pnpm](<https://devfeed.tech/tags/pnpm.md>), [resolved](<https://devfeed.tech/tags/resolved.md>), [security](<https://devfeed.tech/tags/security.md>), [sha1-hulud](<https://devfeed.tech/tags/sha1-hulud.md>), [supply-chain](<https://devfeed.tech/tags/supply-chain.md>), [upgrade](<https://devfeed.tech/tags/upgrade.md>)

### AI overview

Mintlify reports that its CLI was briefly exposed to the SHA1-Hulud supply chain attack through compromised npm dependencies on November 24, 2025. The company says it resolved the issue within six hours, released CLI version 4.2.210, deprecated potentially affected versions, and provided remediation steps for users who installed or updated during the vulnerable window.

### Source excerpt

The Mintlify CLI was briefly exposed to a supply chain attack. Learn what happened, who was affected, and what actions to take. Resolved in 6 hours.

## A New Nx Experience for TypeScript Monorepos and Beyond

DevFeed: [A New Nx Experience for TypeScript Monorepos and Beyond](<https://devfeed.tech/articles/a-new-nx-experience-for-typescript-monorepos-and-beyond-21416.md>)

Original publisher: [Read original article](<https://nx.dev/blog/new-nx-experience-for-typescript-monorepos>)

Author: Juri Strumpflohner

Published: 2025-01-29T00:00:00Z

Content type: release

Language: en

Sources: [Juri Strumpflohner](<https://devfeed.tech/sources/juri-strumpflohner.md>)

Topics: [TypeScript](<https://devfeed.tech/topics/typescript.md>), [Developer experience](<https://devfeed.tech/topics/developer-experience.md>), [Package manager](<https://devfeed.tech/topics/package-manager.md>)

Tags: [bun](<https://devfeed.tech/tags/bun.md>), [developer-experience](<https://devfeed.tech/tags/developer-experience.md>), [monorepo](<https://devfeed.tech/tags/monorepo.md>), [monorepo-tools](<https://devfeed.tech/tags/monorepo-tools.md>), [npm](<https://devfeed.tech/tags/npm.md>), [npm-workspaces](<https://devfeed.tech/tags/npm-workspaces.md>), [nx](<https://devfeed.tech/tags/nx.md>), [pnpm](<https://devfeed.tech/tags/pnpm.md>), [release](<https://devfeed.tech/tags/release.md>), [tooling](<https://devfeed.tech/tags/tooling.md>), [typescript](<https://devfeed.tech/tags/typescript.md>)

### AI overview

Nx introduces a workspaces-based setup that combines NPM, Yarn, PNPM, or Bun workspaces with TypeScript project references for monorepos. The article explains the expected performance, memory-use, and editor-support benefits, while noting that the feature is initially behind a flag.

### Source excerpt

Discover how Nx's new workspaces setup combines package managers with TypeScript project references for better performance and developer experience in monorepos.

## Docusaurus 3.6

DevFeed: [Docusaurus 3.6](<https://devfeed.tech/articles/docusaurus-3-6-40947.md>)

Original publisher: [Read original article](<https://docusaurus.io/blog/releases/3.6>)

Author: Sébastien Lorber

Published: 2024-11-04T00:00:00Z

Content type: release

Language: en

Sources: [Docusaurus Blog](<https://devfeed.tech/sources/docusaurus-blog.md>)

Topics: [build performance](<https://devfeed.tech/topics/build-performance.md>), [build times](<https://devfeed.tech/topics/build-times.md>), [Memory Leaks](<https://devfeed.tech/topics/memory-leaks.md>), [Compiler](<https://devfeed.tech/topics/compiler.md>), [Rust](<https://devfeed.tech/topics/rust.md>)

Tags: [build-performance](<https://devfeed.tech/tags/build-performance.md>), [build-times](<https://devfeed.tech/tags/build-times.md>), [bun](<https://devfeed.tech/tags/bun.md>), [ci](<https://devfeed.tech/tags/ci.md>), [memory-leak](<https://devfeed.tech/tags/memory-leak.md>), [npm](<https://devfeed.tech/tags/npm.md>), [pnpm](<https://devfeed.tech/tags/pnpm.md>), [release](<https://devfeed.tech/tags/release.md>)

### AI overview

Docusaurus 3.6 introduces the opt-in Docusaurus Faster infrastructure project, using Rust-based tools to improve build performance and reduce memory consumption. Community benchmarks report production builds that are 2 to 4 times faster, alongside a fixed memory leak and smaller static HTML output.

### Source excerpt

We are happy to announce Docusaurus 3.6.

## How to Use pnpm on Heroku

DevFeed: [How to Use pnpm on Heroku](<https://devfeed.tech/articles/how-to-use-pnpm-on-heroku-26507.md>)

Original publisher: [Read original article](<https://www.heroku.com/blog/using-pnpm-on-heroku/>)

Author: Colin Casey

Published: 2024-07-19T02:12:00Z

Content type: tutorial

Language: en

Sources: [Heroku](<https://devfeed.tech/sources/heroku.md>)

Topics: [pnpm](<https://devfeed.tech/topics/pnpm.md>), [Heroku](<https://devfeed.tech/topics/heroku.md>), [Package manager](<https://devfeed.tech/topics/package-manager.md>), [Node.js](<https://devfeed.tech/topics/node-js.md>), [npm](<https://devfeed.tech/topics/npm.md>), [Command-line interface](<https://devfeed.tech/topics/cli.md>), [Express](<https://devfeed.tech/topics/express.md>), [Git](<https://devfeed.tech/topics/git.md>)

Tags: [buildpacks](<https://devfeed.tech/tags/buildpacks.md>), [cli](<https://devfeed.tech/tags/cli.md>), [dependencies](<https://devfeed.tech/tags/dependencies.md>), [developer-tools](<https://devfeed.tech/tags/developer-tools.md>), [development](<https://devfeed.tech/tags/development.md>), [engineering](<https://devfeed.tech/tags/engineering.md>), [express](<https://devfeed.tech/tags/express.md>), [git](<https://devfeed.tech/tags/git.md>), [heroku](<https://devfeed.tech/tags/heroku.md>), [how-to](<https://devfeed.tech/tags/how-to.md>), [install](<https://devfeed.tech/tags/install.md>), [integrity](<https://devfeed.tech/tags/integrity.md>), [node](<https://devfeed.tech/tags/node.md>), [node-js](<https://devfeed.tech/tags/node-js.md>), [npm](<https://devfeed.tech/tags/npm.md>), [packages](<https://devfeed.tech/tags/packages.md>), [pnpm](<https://devfeed.tech/tags/pnpm.md>)

### AI overview

This tutorial explains how to use pnpm as an alternative to npm for Node.js applications deployed on Heroku. It covers pnpm's content-addressable store, dependency installation workflow, Corepack-based installation, version pinning, and creating a sample Express application.

### Source excerpt

What is pnpm? Pnpm is a fast, disk-efficient Node package manager used as an alternative to npm. The Heroku Node.js buildpack now supports pnpm. Early Node.js application owners who've taken advantage of pnpm support have seen 10-40% faster install times compared to NPM on Heroku deployments. It's an excellent choice for managing packages in the [...] The post How to Use pnpm on Heroku appeared first on Heroku.

## Versioning and Releasing Packages in a Monorepo

DevFeed: [Versioning and Releasing Packages in a Monorepo](<https://devfeed.tech/articles/versioning-and-releasing-packages-in-a-monorepo-21456.md>)

Original publisher: [Read original article](<https://nx.dev/blog/versioning-and-releasing-packages-in-a-monorepo>)

Author: Juri Strumpflohner

Published: 2024-02-09T00:00:00Z

Content type: tutorial

Language: en

Sources: [Juri Strumpflohner](<https://devfeed.tech/sources/juri-strumpflohner.md>)

Topics: [monorepo](<https://devfeed.tech/topics/monorepo.md>), [npm packages](<https://devfeed.tech/topics/npm-packages.md>), [releases](<https://devfeed.tech/topics/releases.md>), [Git](<https://devfeed.tech/topics/git.md>), [npm](<https://devfeed.tech/topics/npm.md>)

Tags: [automated](<https://devfeed.tech/tags/automated.md>), [changelog](<https://devfeed.tech/tags/changelog.md>), [git](<https://devfeed.tech/tags/git.md>), [monorepo](<https://devfeed.tech/tags/monorepo.md>), [npm](<https://devfeed.tech/tags/npm.md>), [nx](<https://devfeed.tech/tags/nx.md>), [nx-cloud](<https://devfeed.tech/tags/nx-cloud.md>), [packages](<https://devfeed.tech/tags/packages.md>), [pnpm](<https://devfeed.tech/tags/pnpm.md>), [release](<https://devfeed.tech/tags/release.md>), [releases](<https://devfeed.tech/tags/releases.md>), [versioning](<https://devfeed.tech/tags/versioning.md>)

### AI overview

A tutorial on using Nx Release to version and publish packages in a monorepo. It covers conventional commits, automated changelog generation, dry runs, package and lockfile updates, Git staging, commits, and tags.

### Source excerpt

Learn how to use Nx Release to version and publish packages in your monorepo with conventional commits and automated changelog generation.

## Project Crystal Makes Nx Plugins More Transparent and Lightweight

DevFeed: [Project Crystal Makes Nx Plugins More Transparent and Lightweight](<https://devfeed.tech/articles/what-if-nx-plugins-were-more-like-vscode-extensions-21458.md>)

Original publisher: [Read original article](<https://nx.dev/blog/what-if-nx-plugins-were-more-like-vscode-extensions>)

Author: Juri Strumpflohner

Published: 2024-02-05T00:00:00Z

Content type: article

Language: en

Sources: [Juri Strumpflohner](<https://devfeed.tech/sources/juri-strumpflohner.md>)

Topics: [VS Code Extension](<https://devfeed.tech/topics/vscode-extension.md>), [monorepo](<https://devfeed.tech/topics/monorepo.md>), [Developer experience](<https://devfeed.tech/topics/developer-experience.md>), [configuration](<https://devfeed.tech/topics/configuration.md>), [Automation](<https://devfeed.tech/topics/automation.md>), [Caching](<https://devfeed.tech/topics/caching.md>)

Tags: [automation](<https://devfeed.tech/tags/automation.md>), [configuration](<https://devfeed.tech/tags/configuration.md>), [developer-experience](<https://devfeed.tech/tags/developer-experience.md>), [extensions](<https://devfeed.tech/tags/extensions.md>), [monorepo](<https://devfeed.tech/tags/monorepo.md>), [npm](<https://devfeed.tech/tags/npm.md>), [nx](<https://devfeed.tech/tags/nx.md>), [nx-cloud](<https://devfeed.tech/tags/nx-cloud.md>), [plugins](<https://devfeed.tech/tags/plugins.md>), [pnpm](<https://devfeed.tech/tags/pnpm.md>), [releases](<https://devfeed.tech/tags/releases.md>), [tooling](<https://devfeed.tech/tags/tooling.md>), [vscode](<https://devfeed.tech/tags/vscode.md>)

### AI overview

The article introduces Project Crystal in Nx 18, an approach to making Nx plugins more transparent and lightweight. It describes inferred targets, reduced configuration, and easier adoption in existing monorepos, while acknowledging trade-offs involving abstraction, automation, learning curves, and control.

### Source excerpt

Introducing Project Crystal in Nx 18, a transformative approach to Nx plugins that makes them more transparent and lightweight, featuring inferred targets, reduced configuration overhead, and improved monorepo adoption.

## Building a faster CI pipeline with Turborepo and pnpm

DevFeed: [Building a faster CI pipeline with Turborepo and pnpm](<https://devfeed.tech/articles/building-a-faster-ci-pipeline-with-turborepo-and-pnpm-18500.md>)

Original publisher: [Read original article](<https://www.tinybird.co/blog/frontend-ci-monorepo-turborepo-pnpm>)

Author: Rafa Moreno

Published: 2023-04-11T00:00:00Z

Content type: article

Language: en

Sources: [Tinybird](<https://devfeed.tech/sources/tinybird.md>)

Topics: [ci](<https://devfeed.tech/topics/ci.md>), [Front end](<https://devfeed.tech/topics/frontend.md>), [test-coverage](<https://devfeed.tech/topics/test-coverage.md>), [Code](<https://devfeed.tech/topics/code.md>)

Tags: [ci](<https://devfeed.tech/tags/ci.md>), [code](<https://devfeed.tech/tags/code.md>), [engineering-excellence](<https://devfeed.tech/tags/engineering-excellence.md>), [frontend](<https://devfeed.tech/tags/frontend.md>), [pipeline](<https://devfeed.tech/tags/pipeline.md>), [pnpm](<https://devfeed.tech/tags/pnpm.md>), [test-coverage](<https://devfeed.tech/tags/test-coverage.md>)

### AI overview

The article describes three changes that shortened frontend CI execution time despite substantial increases in code size and test coverage.

### Source excerpt

We made 3 big changes that have shortened our frontend CI execution time despite a massive increase in code size and test coverage.

## Docusaurus 2.4

DevFeed: [Docusaurus 2.4](<https://devfeed.tech/articles/docusaurus-2-4-40939.md>)

Original publisher: [Read original article](<https://docusaurus.io/blog/releases/2.4>)

Author: Sébastien Lorber

Published: 2023-03-23T00:00:00Z

Content type: release

Language: en

Sources: [Docusaurus Blog](<https://devfeed.tech/sources/docusaurus-blog.md>)

Topics: [Documentation](<https://devfeed.tech/topics/documentation.md>), [Query (disambiguation)](<https://devfeed.tech/topics/query.md>), [Developer experience](<https://devfeed.tech/topics/developer-experience.md>)

Tags: [bug-fixes](<https://devfeed.tech/tags/bug-fixes.md>), [bun](<https://devfeed.tech/tags/bun.md>), [changes](<https://devfeed.tech/tags/changes.md>), [embedding](<https://devfeed.tech/tags/embedding.md>), [google-analytics](<https://devfeed.tech/tags/google-analytics.md>), [migrate](<https://devfeed.tech/tags/migrate.md>), [npm](<https://devfeed.tech/tags/npm.md>), [pnpm](<https://devfeed.tech/tags/pnpm.md>), [release](<https://devfeed.tech/tags/release.md>), [translation](<https://devfeed.tech/tags/translation.md>)

### AI overview

Docusaurus 2.4 is announced as a minor release with updates to sidebar item descriptions, theme selection through a query-string parameter, npm-to-Yarn conversion, Google Analytics tracking IDs, error rendering, translations, and several other fixes and changes.

### Source excerpt

We are happy to announce Docusaurus 2.4.

## Lerna reborn -- What's new in v6?

DevFeed: [Lerna reborn -- What's new in v6?](<https://devfeed.tech/articles/lerna-reborn-what-s-new-in-v6-21409.md>)

Original publisher: [Read original article](<https://nx.dev/blog/lerna-reborn-whats-new-in-v6>)

Author: Juri Strumpflohner

Published: 2022-10-12T00:00:00Z

Content type: release

Language: en

Sources: [Juri Strumpflohner](<https://devfeed.tech/sources/juri-strumpflohner.md>)

Topics: [Caching](<https://devfeed.tech/topics/caching.md>), [Open Source](<https://devfeed.tech/topics/open-source.md>)

Tags: [caching](<https://devfeed.tech/tags/caching.md>), [features](<https://devfeed.tech/tags/features.md>), [monorepo](<https://devfeed.tech/tags/monorepo.md>), [new-features](<https://devfeed.tech/tags/new-features.md>), [nx](<https://devfeed.tech/tags/nx.md>), [pnpm](<https://devfeed.tech/tags/pnpm.md>), [release](<https://devfeed.tech/tags/release.md>), [speed](<https://devfeed.tech/tags/speed.md>), [terminal](<https://devfeed.tech/tags/terminal.md>)

### AI overview

Lerna v6 introduces default Nx integration, remote caching, PNPM support, dynamic terminal output, and improved task management for monorepo builds.

### Source excerpt

Lerna v6 brings default Nx integration, remote caching, PNPM support, dynamic terminal output, and improved task management to speed up your monorepo builds.

## Setup a Monorepo with PNPM workspaces and speed it up with Nx!

DevFeed: [Setup a Monorepo with PNPM workspaces and speed it up with Nx!](<https://devfeed.tech/articles/setup-a-monorepo-with-pnpm-workspaces-and-speed-it-up-with-nx-21448.md>)

Original publisher: [Read original article](<https://nx.dev/blog/setup-a-monorepo-with-pnpm-workspaces-and-speed-it-up-with-nx>)

Author: Juri Strumpflohner

Published: 2022-07-14T00:00:00Z

Content type: tutorial

Language: en

Sources: [Juri Strumpflohner](<https://devfeed.tech/sources/juri-strumpflohner.md>)

Topics: [monorepo](<https://devfeed.tech/topics/monorepo.md>), [Yarn](<https://devfeed.tech/topics/yarn.md>), [Remix](<https://devfeed.tech/topics/remix.md>), [React](<https://devfeed.tech/topics/react.md>), [make](<https://devfeed.tech/topics/make.md>), [Git](<https://devfeed.tech/topics/git.md>), [npm](<https://devfeed.tech/topics/npm.md>)

Tags: [caching](<https://devfeed.tech/tags/caching.md>), [deep-dive](<https://devfeed.tech/tags/deep-dive.md>), [git](<https://devfeed.tech/tags/git.md>), [how-to](<https://devfeed.tech/tags/how-to.md>), [monorepo](<https://devfeed.tech/tags/monorepo.md>), [npm](<https://devfeed.tech/tags/npm.md>), [nx](<https://devfeed.tech/tags/nx.md>), [parallel](<https://devfeed.tech/tags/parallel.md>), [pnpm](<https://devfeed.tech/tags/pnpm.md>), [react](<https://devfeed.tech/tags/react.md>), [remix](<https://devfeed.tech/tags/remix.md>), [run](<https://devfeed.tech/tags/run.md>), [tutorial](<https://devfeed.tech/tags/tutorial.md>)

### AI overview

A tutorial on setting up a PNPM monorepo for a Remix application and React-based library, with guidance on parallel commands and adding Nx for task scheduling and caching.

### Source excerpt

Learn to set up a monorepo with PNPM workspaces for Remix and React projects, then enhance it with Nx's task scheduling and caching features.