We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pnpm
Faster dev, faster installs, faster CI, fast everything.
So when we change our package manager, then everyone would have to do pnpm dev instead of npm run dev to run our project locally.
pnpm dev
npm run dev
Basically pnpm is a faster package manager than npm, but they both use the npmjs.com package ecosystem, it's just that pnpm installs/works faster
npm
node_modules
package-lock.json
pnpm import
pnpm install
Look into https://pnpm.io/cli/import or other blogs explaining how they migrated from npm to pnpm
The text was updated successfully, but these errors were encountered:
lewisj576
No branches or pull requests
Why
Faster dev, faster installs, faster CI, fast everything.
So when we change our package manager, then everyone would have to do
pnpm dev
instead ofnpm run dev
to run our project locally.Basically
pnpm
is a faster package manager thannpm
, but they both use the npmjs.com package ecosystem, it's just thatpnpm
installs/works fasterHow
node_modules
folderpackage-lock.json
pnpm import
pnpm install
Tips
Look into https://pnpm.io/cli/import or other blogs explaining how they migrated from
npm
topnpm
The text was updated successfully, but these errors were encountered: