-----------------------------------------------vue相关 npm基础操作汇总---------------------------------------------------------------
下载源 文件夹 运行黑屋 配置文件 安装工具 安装自己的依赖
https://blog.csdn.net/hpasdabc?spm=1000.2115.3001.5343
node自带的下载工具:npm
0. 当使用了npm管理工具包的时候,意味着当前项目进入了工厂化的阶段
1. npm包管理器 第三方模块是包的一种
2. npm的常见命令
查看帮助信息:`npm help`
查看版本号:`npm -v`
下载并安装:`npm install 包名` 大型包携带的依赖会自动下载 存储在node modules文件夹
`npm i 包名`
卸载并删除:`npm uninstall 包名`
`npm uni 包名`
⭐创建项目的工程化配置文件:`npm init -y` y表示全部自动执行yes选型 快速创建 否则手动设置
项目的配置文件:`package.json` 自动创建 项目配置信息文件
查看包信息:`npm info 包名`
查看当前下载了哪些包:`npm list`
清除npm缓存:`npm cache clean -f`
<!--
配置文件package.json的内容
{
"name": "mygulp", -项目名称
"version": "1.0.0", -项目版本
"description": "", -项目描述
"main": "index.js", -项目主文件
"scripts": { -自定义的命令
"test": "echo \"Error: no test specified\" && exit 1",
"a": "dir"
},
"keywords": [], -关键字
"author": "https://blog.csdn.net/hpasdabc?spm=1000.2115.3001.5343", -作者
"license": "ISC", -证书
"dependencies": { -运行依赖
"randomnumber": "^1.0.6"
},
"devDependencies": { -开发依赖
"randomstring": "^1.1.5"
}
} -->
--------------------------------------------------------------------------------------------------------------
https://blog.csdn.net/hpasdabc?spm=1000.2115.3001.5343
npm下载源的切换(拓展)
1. npm服务器在国外
2. npm的下载源管理工具:nrm
3. nrm的使用
下载:npm i nrm -g
查看版本:nrm -V
查看nrm自带的源:nrm ls
切换源:nrm use 源名
测试各个源的下载速度:nrm test
查看当前下载源
npm config get registry
替换源
npm config set registry https://registry.npm.taobao.org 这里替换的就是淘宝镜像
也可以使用cnpm
npm install -g cnpm --registry=https://registry.npm.taobao.org
值得留意的是,使用了cnpm以后下载就需要用cnpm install来下载而不是npm,不然这就白设置了啊
--------------------------------------------------------------------------------------------------------------
node第三方模块的使用
1. 类似于插件
2. 使用
下载:npm i 第三方模块名
引入:const 模块变量 = require("第三方模块名");
使用:借助模块变量使用
--------------------------------------------------------------------------------------------------------------
依赖的下载 (项目需要的外部支持文件)
1. 运行依赖
npm i 包名 -S 默认
npm i 包名 --save
2. 开发依赖
npm i 包名 -D
npm i 包名 --save-dev
3. 全局依赖
npm i 包名 -g 下载到缓存文件夹供全局使用
卸载时要指定卸载的位置
npm uninstall 名字 -g