pnpm

Fast, disk space efficient package manager (by pnpm)

Pnpm Alternatives

Similar projects and alternatives to pnpm

  • zig

    813 pnpm VS zig

    General-purpose programming language and toolchain for maintaining robust, optimal, and reusable software.

  • deno

    448 pnpm VS deno

    A modern runtime for JavaScript and TypeScript.

  • SurveyJS

    Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App. With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js.

    SurveyJS logo
  • Poetry

    377 pnpm VS Poetry

    Python packaging and dependency management made easy

  • nx

    344 pnpm VS nx

    Smart Monorepos · Fast CI

  • nvm

    313 pnpm VS nvm

    Node Version Manager - POSIX-compliant bash script to manage multiple active node.js versions

  • bun

    286 pnpm VS bun

    Incredibly fast JavaScript runtime, bundler, test runner, and package manager – all in one

  • berry

    181 pnpm VS berry

    📦🐈 Active development trunk for Yarn ⚒

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
  • lerna

    162 pnpm VS lerna

    :dragon: Lerna is a fast, modern build system for managing and publishing multiple JavaScript/TypeScript packages from the same repository.

  • Nodemon.io

    137 pnpm VS Nodemon.io

    Monitor for any changes in your node.js application and automatically restart the server - perfect for development

  • minio

    99 pnpm VS minio

    The Object Store for AI Data Infrastructure

  • eslint-plugin-import

    ESLint plugin with rules that help validate proper imports.

  • yarn

    34 pnpm VS yarn

    The 1.x line is frozen - features and bugfixes now happen on https://github.com/yarnpkg/berry

  • rfcs

    35 pnpm VS rfcs

    Public change requests/proposals & ideation (by npm)

  • npkill

    22 pnpm VS npkill

    List any node_modules 📦 dir in your system and how heavy they are. You can then select which ones you want to erase to free up space 🧹

  • JSHint

    20 pnpm VS JSHint

    JSHint is a tool that helps to detect errors and potential problems in your JavaScript code

  • wireit

    15 pnpm VS wireit

    Wireit upgrades your npm/pnpm/yarn scripts to make them smarter and more efficient.

  • hent-AI

    11 pnpm VS hent-AI

    Automation of censor bar detection

  • npm

    48 pnpm VS npm
  • orogene

    4 pnpm VS orogene

    Makes `node_modules/` happen. Fast. No fuss.

  • local.ai

    4 pnpm VS local.ai

    🎒 local.ai - Run AI locally on your PC!

  • WorkOS

    The modern identity platform for B2B SaaS. The APIs are flexible and easy-to-use, supporting authentication, user identity, and complex enterprise features like SSO and SCIM provisioning.

    WorkOS 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 pnpm alternative or higher similarity.

pnpm reviews and mentions

Posts with mentions or reviews of pnpm. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-14.
  • Pnpm 9
    1 project | news.ycombinator.com | 18 Apr 2024
  • Understanding Dependencies in Programming
    4 projects | dev.to | 14 Apr 2024
    Node.js manages dependencies using package managers like npm (Node Package Manager), yarn, and pnpm. npm comes pre-installed with Node.js and allows you to install and uninstall Node.js packages. It uses a package.json file to keep track of which packages your project depends on. Yarn and Pnpm are alternative package managers that aim to improve on npm in various ways, such as improved performance and better lock file format.
  • Manage project dependencies correctly
    1 project | dev.to | 13 Apr 2024
    Use pnpm - This is just one recommendation, but it's too big of a topic to discuss here.
  • Bun 1.1
    17 projects | news.ycombinator.com | 1 Apr 2024
  • Using pnpm with the GitLab package registry in GitLab CI
    1 project | dev.to | 8 Mar 2024
    In this blog post, I explain how to use pnpm in GitLab CI and how to authenticate with a private GitLab package registry.
  • Unit Testing in Node.js and TypeScript: A Comprehensive Guide with Jest Integration
    5 projects | dev.to | 3 Mar 2024
    A package manager such as npm, Yarn, or pnpm. A package manager is a tool that helps you manage the dependencies of your project. You can use any of these package managers to install Jest and other packages.
  • Understanding Redux: A Practical Guide to State Management
    1 project | dev.to | 20 Feb 2024
    Installation: Install Redux and React-Redux using npm or yarn.(you can try pnpm too!)
  • Effective nodejs version management for the busy developer
    3 projects | dev.to | 4 Feb 2024
    I also recommend using pnpm as a package manager, it's faster and more efficient than npm or yarn with great capabilities concerning monorepo setup. On recent nodejs versions (v16.13+), you can install it easily with:
  • [email protected] is out!
    1 project | /r/pnpm | 8 Dec 2023
  • .dockerignore being ignored by docker-compose? no space left on device
    3 projects | /r/docker | 5 Dec 2023
    FROM node:21-alpine AS base FROM base AS builder Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed. RUN apk add --no-cache libc6-compat RUN apk update Set working directory WORKDIR /app Install pnpm with corepack RUN corepack enable && corepack prepare pnpm@latest --activate Enable pnpm add --global on Alpine Linux by setting home location environment variable to a location already in $PATH https://github.com/pnpm/pnpm/issues/784#issuecomment-1518582235 ENV PNPM_HOME=/usr/local/bin RUN pnpm install turbo --global COPY . . RUN turbo prune web --docker Add lockfile and package.json's of isolated subworkspace FROM base AS installer RUN apk add --no-cache libc6-compat RUN apk update WORKDIR /app First install the dependencies (as they change less often) COPY .gitignore .gitignore COPY --from=builder /app/out/json/ . COPY --from=builder /app/out/pnpm-workspace.yaml ./pnpm-workspace.yaml COPY --from=builder /app/out/pnpm-lock.yaml ./pnpm-lock.yaml RUN pnpm install Build the project COPY --from=builder /app/out/full/ . RUN pnpm turbo run build --filter=web FROM base AS runner WORKDIR /app Don't run production as root RUN addgroup --system --gid 1001 nodejs RUN adduser --system --uid 1001 nextjs USER nextjs COPY --from=installer /app/apps/web/next.config.js . COPY --from=installer /app/apps/web/package.json . Automatically leverage output traces to reduce image size https://nextjs.org/docs/advanced-features/output-file-tracing COPY --from=installer --chown=nextjs:nodejs /app/apps/web/.next/standalone ./ COPY --from=installer --chown=nextjs:nodejs /app/apps/web/.next/static ./apps/web/.next/static COPY --from=installer --chown=nextjs:nodejs /app/apps/web/public ./apps/web/public CMD node apps/web/server.js
  • A note from our sponsor - InfluxDB
    www.influxdata.com | 20 Apr 2024
    Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality. Learn more →

Stats

Basic pnpm repo stats
94
27,562
9.8
6 days ago

pnpm/pnpm is an open source project licensed under MIT License which is an OSI approved license.

The primary programming language of pnpm is TypeScript.


Sponsored
The modern identity platform for B2B SaaS
The APIs are flexible and easy-to-use, supporting authentication, user identity, and complex enterprise features like SSO and SCIM provisioning.
workos.com