
npm
落落叶叶无声
做过后端,现在主前端的开发工程师...
展开
-
What is the difference between --save and --save-dev?
npm install --save: The package will be added to the dependencies list which contain packages that are used in production mode. npm install --save-dev: The package will be added to the devDepen原创 2016-09-29 11:03:13 · 557 阅读 · 0 评论 -
npm start
The npm start command runs a command specified in the package's "start" property of its "scripts" object. If no "start" property is specified on the "scripts" object, it will run node server.js原创 2016-09-29 11:18:04 · 1554 阅读 · 0 评论