pnpm dlx
Aliases: pnpx
is an alias for pnpm dlx
Получает пакет из реестра, не устанавливая его в качестве зависимости, загружает его и запускает любой бинарный файл назначенный как команда по умолчанию у пакета.
For example, to use create-react-app
anywhere to bootstrap a react app without
needing to install it under another project, you can run:
pnpm dlx create-react-app ./my-app
This will fetch create-react-app
from the registry and run it with the given arguments.
Вы также можете указать, какую именно версию пакета вы хотите использовать:
pnpm dlx create-react-app@next ./my-app