Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

59,720

Downloads of v 8.15.6:

572

Last Update:

08 Apr 2024

Package Maintainer(s):

Software Author(s):

  • Contributors of pnpm

Tags:

pnpm node npm

pnpm

  • 1
  • 2
  • 3

8.15.6 | Updated: 08 Apr 2024

Downloads:

59,720

Downloads of v 8.15.6:

572

Maintainer(s):

Software Author(s):

  • Contributors of pnpm

Tags:

pnpm node npm

pnpm 8.15.6

  • 1
  • 2
  • 3

Some Checks Have Failed or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Resulted in Flagged as a Note:

At least one file within this package has greater than 0 detections, but less than 5

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install pnpm, run the following command from the command line or from PowerShell:

>

To upgrade pnpm, run the following command from the command line or from PowerShell:

>

To uninstall pnpm, run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade pnpm -y --source="'INTERNAL REPO URL'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade pnpm -y --source="'INTERNAL REPO URL'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install pnpm
  win_chocolatey:
    name: pnpm
    version: '8.15.6'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'pnpm' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '8.15.6'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller pnpm
{
    Name     = "pnpm"
    Version  = "8.15.6"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'pnpm':
  ensure   => '8.15.6',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

Package Approved

This package was approved as a trusted package on 08 Apr 2024.

Description

Background

pnpm uses a content-addressable filesystem to store all files from all module directories on a disk.
When using npm or Yarn, if you have 100 projects using lodash, you will have 100 copies of lodash on disk.
With pnpm, lodash will be stored in a content-addressable storage, so:

  1. If you depend on different versions of lodash, only the files that differ are added to the store.
    If lodash has 100 files, and a new version has a change only in one of those files,
    pnpm update will only add 1 new file to the storage.
  2. All the files are saved in a single place on the disk. When packages are installed, their files are linked
    from that single place consuming no additional disk space. Linking is performed using either hard-links or reflinks (copy-on-write).

As a result, you save gigabytes of space on your disk and you have a lot faster installations!
If you'd like more details about the unique node_modules structure that pnpm creates and
why it works fine with the Node.js ecosystem, read this small article: Flat node_modules is not the only way.

Getting Started


tools\ChocolateyInstall.ps1
$ErrorActionPreference = 'Stop'

$packageName = $Env:chocolateyPackageName
$packagePnpmVersion = [version]([regex]'^\d+(\.\d+){2}').Match($Env:chocolateyPackageVersion).Value
$scriptRoot = Split-Path -parent $MyInvocation.MyCommand.Definition

$architecture = 'x64'
$platform = 'win'
$pnpmExecutableFileName = "$packageName.exe"

if ([System.Environment]::Is64BitOperatingSystem -eq $false) {
	Write-Error "pnpm currently only provides binaries for x64 architectures on Windows are available. Try to install pnpm using npm."
	return
}

$pnpmExecutablePath = "$scriptRoot\$pnpmExecutableFileName"
$pnpmExecutableUrl = "https://github.com/pnpm/pnpm/releases/download/v$packagePnpmVersion/pnpm-$platform-$architecture.exe"
$packageWebFileArgs = @{
    packageName     = $packageName
    fileFullPath    = $pnpmExecutablePath
    url             = $pnpmExecutableUrl
    checksumType    = 'sha1'
    checksum        = '325863783717401F2DAFD79B4BC60E3A01E067D3'
}
Get-ChocolateyWebFile @packageWebFileArgs
update.ps1
Import-Module AU

$latestRelease = "https://api.github.com/repos/pnpm/pnpm/releases/latest"

function global:au_BeforeUpdate {
    $Latest.Checksum = Get-RemoteChecksum $Latest.URL -Algorithm sha1
}

function global:au_SearchReplace {
    @{
        'tools\chocolateyInstall.ps1' = @{
            "(?i)(^\s*checksum\s*=\s*)('.*')" = "`$1'$($Latest.Checksum)'"
        }
    }
}

function global:au_GetLatest {
    $packageJson = Invoke-WebRequest -UseBasicParsing -Uri $latestRelease | ConvertFrom-Json
    $packageVersion = $packageJson.name -Replace "^v"
    $packageAsset = $packageJson.assets | Where-Object { $_.name -eq "pnpm-win-x64.exe" }

    @{
        Version       = $packageVersion
        RemoteVersion = $packageVersion
        URL           = $packageAsset.browser_download_url
    }
}

update -ChecksumFor none

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
pnpm 8.15.5 8 Monday, April 8, 2024 Approved
pnpm 8.15.1 5086 Tuesday, January 30, 2024 Approved
pnpm 8.15.0 194 Monday, January 29, 2024 Approved
pnpm 8.14.3 506 Wednesday, January 24, 2024 Approved
pnpm 8.14.2 157 Tuesday, January 23, 2024 Approved
pnpm 8.14.1 1154 Thursday, January 11, 2024 Approved
pnpm 8.14.0 808 Wednesday, January 3, 2024 Approved
pnpm 8.13.1 578 Wednesday, December 27, 2023 Approved
pnpm 8.12.1 1019 Thursday, December 14, 2023 Approved
pnpm 8.12.0 418 Monday, December 11, 2023 Approved
pnpm 8.11.0 1113 Monday, November 27, 2023 Approved
pnpm 8.10.5 880 Wednesday, November 15, 2023 Approved
pnpm 8.10.4 176 Tuesday, November 14, 2023 Approved
pnpm 8.10.3 173 Monday, November 13, 2023 Approved
pnpm 8.10.2 947 Thursday, November 2, 2023 Approved
pnpm 8.10.0 138 Monday, October 30, 2023 Approved
pnpm 8.9.2 1419 Monday, October 16, 2023 Approved
pnpm 8.9.0 652 Tuesday, October 10, 2023 Approved
pnpm 8.8.0 1132 Wednesday, September 27, 2023 Approved
pnpm 8.7.6 908 Monday, September 18, 2023 Approved
pnpm 8.7.5 650 Tuesday, September 12, 2023 Approved
pnpm 8.7.4 555 Wednesday, September 6, 2023 Approved
pnpm 8.7.3 204 Tuesday, September 5, 2023 Approved
pnpm 8.7.1 398 Friday, September 1, 2023 Approved
pnpm 8.7.0 468 Monday, August 28, 2023 Approved
pnpm 8.6.12 1423 Monday, August 7, 2023 Approved
pnpm 8.6.11 520 Tuesday, August 1, 2023 Approved
pnpm 8.6.10 770 Monday, July 24, 2023 Approved
pnpm 8.6.9 557 Tuesday, July 18, 2023 Approved
pnpm 8.6.8 80 Tuesday, July 18, 2023 Approved
pnpm 8.6.7 676 Monday, July 10, 2023 Approved
pnpm 8.6.6 534 Tuesday, July 4, 2023 Approved
pnpm 8.6.5 633 Tuesday, June 27, 2023 Approved
pnpm 8.6.4 165 Monday, June 26, 2023 Approved
pnpm 8.6.3 579 Tuesday, June 20, 2023 Approved
pnpm 8.6.2 769 Monday, June 12, 2023 Approved
pnpm 8.6.1 561 Tuesday, June 6, 2023 Approved
pnpm 8.6.0 486 Monday, May 29, 2023 Approved
pnpm 8.5.1 635 Monday, May 15, 2023 Approved
pnpm 8.5.0 242 Wednesday, May 10, 2023 Approved
pnpm 8.4.0 298 Wednesday, May 3, 2023 Approved
pnpm 8.3.1 469 Thursday, April 20, 2023 Approved
pnpm 8.3.0 148 Tuesday, April 18, 2023 Approved
pnpm 8.2.0 419 Tuesday, April 11, 2023 Approved
pnpm 8.1.1 230 Wednesday, April 5, 2023 Approved
pnpm 8.1.0 190 Monday, April 3, 2023 Approved
pnpm 7.33.4 796 Tuesday, July 18, 2023 Approved
pnpm 7.30.5 702 Tuesday, March 28, 2023 Approved
pnpm 7.30.3 259 Monday, March 27, 2023 Approved
pnpm 7.30.1 608 Thursday, March 23, 2023 Approved
pnpm 7.30.0 785 Monday, March 20, 2023 Approved
pnpm 7.29.3 481 Thursday, March 16, 2023 Approved
pnpm 7.29.1 762 Thursday, March 9, 2023 Approved
pnpm 7.29.0 639 Monday, March 6, 2023 Approved
pnpm 7.28.0 1703 Monday, February 27, 2023 Approved
pnpm 7.27.1 843 Monday, February 20, 2023 Approved
pnpm 7.27.0 1602 Thursday, February 9, 2023 Approved
pnpm 7.26.3 778 Monday, February 6, 2023 Approved
pnpm 7.26.2 1284 Monday, January 30, 2023 Approved
pnpm 7.26.0 471 Thursday, January 26, 2023 Approved
pnpm 7.25.1 713 Friday, January 20, 2023 Approved
pnpm 7.25.0 592 Tuesday, January 17, 2023 Approved
pnpm 7.24.3 466 Thursday, January 12, 2023 Approved
pnpm 7.24.2 209 Wednesday, January 11, 2023 Approved
pnpm 7.23.0 545 Friday, January 6, 2023 Approved
pnpm 7.22.0 303 Wednesday, January 4, 2023 Approved
pnpm 7.21.0 372 Thursday, December 29, 2022 Approved
pnpm 7.20.0 169 Monday, December 26, 2022 Approved
pnpm 7.19.0 234 Thursday, December 22, 2022 Approved
pnpm 7.18.2 562 Wednesday, December 14, 2022 Approved
pnpm 7.18.1 542 Wednesday, December 7, 2022 Approved
pnpm 7.18.0 226 Monday, December 5, 2022 Approved
pnpm 7.17.1 413 Tuesday, November 29, 2022 Approved
pnpm 7.17.0 149 Saturday, November 26, 2022 Approved
pnpm 7.14.1 1503 Monday, October 31, 2022 Approved
pnpm 7.14.0 2676 Monday, October 24, 2022 Approved
pnpm 7.13.6 84 Friday, October 21, 2022 Approved
pnpm 7.13.5 457 Monday, October 17, 2022 Approved
pnpm 7.13.4 458 Tuesday, October 11, 2022 Approved
pnpm 7.13.3 114 Monday, October 10, 2022 Approved
pnpm 7.13.2 352 Thursday, October 6, 2022 Approved
pnpm 7.13.1 170 Wednesday, October 5, 2022 Approved
pnpm 7.13.0 180 Monday, October 3, 2022 Approved
pnpm 7.12.2 229 Friday, September 23, 2022 Approved
pnpm 7.12.1 129 Tuesday, September 20, 2022 Approved
pnpm 7.12.0 82 Monday, September 19, 2022 Approved
pnpm 7.11.0 250 Wednesday, September 7, 2022 Approved
pnpm 7.10.0 106 Monday, September 5, 2022 Approved
pnpm 7.9.5 202 Thursday, August 25, 2022 Approved
pnpm 7.9.4 92 Tuesday, August 23, 2022 Approved
pnpm 7.9.3 143 Thursday, August 18, 2022 Approved
pnpm 7.9.1 176 Thursday, August 11, 2022 Approved
pnpm 7.9.0 117 Monday, August 8, 2022 Approved
pnpm 7.8.0 176 Monday, August 1, 2022 Approved
pnpm 7.6.0 225 Friday, July 22, 2022 Approved
pnpm 7.5.2 222 Thursday, July 14, 2022 Approved
pnpm 7.5.1 119 Tuesday, July 12, 2022 Approved
pnpm 7.5.0 140 Friday, July 8, 2022 Approved
pnpm 7.4.1 453 Thursday, June 30, 2022 Approved
pnpm 7.4.0 332 Friday, June 24, 2022 Approved
pnpm 7.3.0 50 Tuesday, June 28, 2022 Approved
pnpm 7.2.1 175 Monday, June 13, 2022 Approved
pnpm 7.1.2 206 Thursday, May 19, 2022 Approved
pnpm 7.1.0 104 Monday, May 16, 2022 Approved
pnpm 7.0.0 171 Monday, May 2, 2022 Approved
pnpm 6.32.24 54 Friday, June 24, 2022 Approved
pnpm 6.32.22 55 Monday, June 13, 2022 Approved
pnpm 6.32.15 50 Thursday, May 19, 2022 Approved
pnpm 6.32.13 54 Monday, May 16, 2022 Approved
pnpm 6.32.11 58 Monday, May 2, 2022 Approved
pnpm 6.32.4 271 Monday, April 4, 2022 Approved
pnpm 6.32.1 214 Wednesday, February 23, 2022 Approved
pnpm 6.31.0 72 Thursday, February 17, 2022 Approved
pnpm 6.30.0 126 Monday, February 7, 2022 Approved
pnpm 6.29.1 94 Thursday, February 3, 2022 Approved
pnpm 6.25.1 68 Wednesday, January 12, 2022 Approved
pnpm 6.24.2 141 Wednesday, December 22, 2021 Approved
pnpm 6.23.6 648 Tuesday, December 21, 2021 Approved

This package has no dependencies.

Discussion for the pnpm Package

Ground Rules:

  • This discussion is only about pnpm and the pnpm package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or pnpm, or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus