NodeJS, What’s the difference between dependencies, devDependencies and peerDependencies?
Summary of important behavior differences:
dependencies are installed on both:
npm install from a directory that contains package.json
npm install $package on any other directory
devDependencies are:
also installed on npm install on a directory th...
aiu-brainless.hashnode.dev5 min read