What's the difference between dependencies, devDependencies and peerDependencies in npm package.json file?

前端 未结 14 1946
灰色年华
灰色年华 2020-11-22 00:43

This documentation answers my question very poorly. I didn\'t understand those explanations. Can someone say in simpler words? Maybe with examples if it\'s hard to choose si

14条回答
  •  一个人的身影
    2020-11-22 01:43

    To save a package to package.json as dev dependencies:

    npm install "$package" --save-dev
    

    When you run npm install it will install both devDependencies and dependencies. To avoid install devDependencies run:

    npm install --production
    

提交回复
热议问题