NodeJS related tips and tricks
date: 18/01/2025 —
- Create a new project
npm init -y
- See versions of a given package
npm view <package> versions --json
- See versions of a given package with yarn
yarn info <package> versions
- Local installed packages
npm ls --depth=0
- Global installed packages
npm -g ls --depth=0