Bootstrap

npm包基本操作

npm init :初始化文件

npm install 包名:安装(简写 npm i 包名

npm install 包名 -save:开发用 简写 -S

npm install 包名 -save-dev:上线用

npm install 包名 -g:全局安装 -y:默认安装

npm install 包名@版本号:安装指定版本

npm uninstall 包名:卸载(npm remove 包名)

npm list -g :全局列举(不加 -g 列举当前目录下的安装包)

npm config get registry:查看npm镜像地址

官网:https://registry.npmjs.org/

淘宝服务器网址:https://registry.npmmirror.com/ (国内下载包,速度会更快)

npm config set registry https://registry.npmmirror.com/ :修改npm的镜像地址为国内的淘宝Npm服务器

node_modules 文件夹:存放所有已安装到项目中的包,require()导入第三方时,就是从这个文件夹中查找加载的

package-lock.js 配置文件:记录node_modules 目录下的每一个包的下载信息

package.json 包管理配置文件:记录与项目有关的一些配置信息

;