npm install 报错:warning no description; no repository field 开始以为必须npm init,npm init在git bash(win7)里,还会卡住.在cmd中,不会卡. 把这两个属性加到package.json中,在npm install 即可.…
最近在研究node.js,在安装npm的时候发现了几个报错,瞬间蒙圈,查找文献基本解决(文献好少呀~ -.-) 一.报错:“can not open path/path/package.json” 原因:在安装npm的时候,终端会调取一个叫package.json的文件,里边包含了 name,version,dependencies 等等属性信息,当终端找不到该文件的时候也就不能完成安装操作. 解决方法:在对应的path下边创建该文件,并且把需要的模块写在dependencies…
npm init: For create package.json file which will recode the dependence. npm install: You can also write like: npm i This is a shortcut way to write npm install. For example. we want to install undersocre.js npm install -S underscore The way '-S' wor…