DEV Community

DowarDev
DowarDev

Posted on

1

Instalar PNPM en Linux, macOS y Windows

Como programador web seguramente escuchaste hablar sobre los gestores de dependencias, especialmente sobre NPM, durante mucho tiempo he trabajado con este gestor, pero hace poco le di la oportunidad a PNPM y valla que me sorprendió.

¿Por qué elegirlo?

NPM creará un directorio en la raíz de nuestro proyecto donde estará almacenando todas sus dependencias y esto se convierte en un problema si tenemos más de un proyecto en nuestro disco, en cambio, PNPM almacena todas las dependencias en una única ubicación y cuando un proyecto requiere de una de ellas simplemente se referencia a través de un enlace, también nos permitirá ser más eficientes a la hora de crear nuevos proyectos, ya que solamente se descargarán aquellas nuevas dependencias.

Instalación

Linux

Para los siguientes comandos no es necesario tener instalado Node.js.

curl -fsSL https://get.pnpm.io/install.sh | sh -
Enter fullscreen mode Exit fullscreen mode

Si no tenemos instalado curl podemos intentar usando wget.

wget -qO- https://get.pnpm.io/install.sh | sh -
Enter fullscreen mode Exit fullscreen mode

Windows

El siguiente comando lo tendremos que ejecutar usando PowerShell.

iwr https://get.pnpm.io/install.ps1 -useb | iex
Enter fullscreen mode Exit fullscreen mode

macOS

Al igual que en Linux podremos hacer uso de los siguientes comandos y sin requerir Node.js.

curl -fsSL https://get.pnpm.io/install.sh | sh -
Enter fullscreen mode Exit fullscreen mode

Si no tenemos instalado curl podemos intentar usando wget.

wget -qO- https://get.pnpm.io/install.sh | sh -
Enter fullscreen mode Exit fullscreen mode

También podremos hacer uso del gestor de paquetes Homebrew.

brew install pnpm
Enter fullscreen mode Exit fullscreen mode

Linux, macOS y Windows

Si contamos con Node.js instalado en nuestro sistema entonces podremos activar PNPM usando una herramienta que este nos provee, de lo contrario te comparto un post donde detallo como instarlo.

corepack enable
Enter fullscreen mode Exit fullscreen mode
corepack prepare pnpm@<version> --activate
Enter fullscreen mode Exit fullscreen mode

Artículo original dowar.xyz

Billboard image

The Next Generation Developer Platform

Coherence is the first Platform-as-a-Service you can control. Unlike "black-box" platforms that are opinionated about the infra you can deploy, Coherence is powered by CNC, the open-source IaC framework, which offers limitless customization.

Learn more

Top comments (0)

Billboard image

The Next Generation Developer Platform

Coherence is the first Platform-as-a-Service you can control. Unlike "black-box" platforms that are opinionated about the infra you can deploy, Coherence is powered by CNC, the open-source IaC framework, which offers limitless customization.

Learn more

👋 Kindness is contagious

Dive into an ocean of knowledge with this thought-provoking post, revered deeply within the supportive DEV Community. Developers of all levels are welcome to join and enhance our collective intelligence.

Saying a simple "thank you" can brighten someone's day. Share your gratitude in the comments below!

On DEV, sharing ideas eases our path and fortifies our community connections. Found this helpful? Sending a quick thanks to the author can be profoundly valued.

Okay