npx alternative for pnpm
Michal Bryxí

Michal Bryxí @michalbryxi

About: Cycle 🚴 , climb 🗻 , run 🏃 , travel 🌍 , enjoy life ♥. IT guy with the need to live fully.

Location:
Interlaken, Switzerland
Joined:
Feb 1, 2018

npx alternative for pnpm

Publish Date: Apr 18 '24
12 2

npm

# Command
npx

# Example
npx ember-apply tailwind-webpack
Enter fullscreen mode Exit fullscreen mode

Run a command from a local or remote npm package

-- npx docs

pnpm

# Command
pnpm dlx

# Example
pnpm dlx ember-apply tailwind-webpack
Enter fullscreen mode Exit fullscreen mode

Fetches a package from the registry without installing it as a dependency, hotloads it, and runs whatever default command binary it exposes.

-- pnpm docs

# Command
pnpx

# Example
pnpx ember-apply tailwind-webpack
Enter fullscreen mode Exit fullscreen mode

Aliases: pnpx is an alias for pnpm dlx.

-- pnpm docs


Title image generated with ChatGPT4 using prompt: "Image of confused web developer having too many choices. Also the developer is a squirrel running high on caffeine --ar 16:9"

Comments 2 total

  • João Angelo
    João AngeloApr 20, 2024

    Hi Michal Bryxí,
    Your tips are very useful.
    Thanks for sharing.

Add comment