How to migrate a project from npm to pnpm

How to migrate a project from npm to pnpm

Tags
Node.js
Web Dev
Projects
Setup
Published
April 16, 2024
Author
Assume we already have pnpm installed
  1. Delete node_modules
    1. rm -rf node_modules
  1. Use pnpm import to migrate all dependencies from packages-lock.json to pnpm-lock.yaml
  1. Install dependencies with pnpm
    1. pnpm i # or pnpm install
     
     
    Others
    npx create-react-app my-app npx create-next-app@latest
    pnpm dlx create-react-app my-app pnpm dlx create-next-app@latest