node 装置 -npm-yarn
node 装置
- https://nodejs.org/en/download/ 进入官网下载安装包(下载 msi 安装程序)
- 电脑关上 cmd–》输出 echo %PATH% 查看环境变量是否增加
- 输出 node-v 和 npm-v 确认 node 和 npm 的版本号
- 更多具体操作能够看这篇文章 https://blog.csdn.net/weixin_…
npm-yarn 装置
- npm install -g yarn
- 查看版本:yarn –version
- 淘宝源装置,复制粘贴以下代码行到 cmd 运行
- yarn config set registry https://registry.npm.taobao.org -g
- yarn config set sass_binary_site http://cdn.npm.taobao.org/dis… -g
中途可能会呈现 win10 powershell 不容许运行脚本
解决办法:
- 管理员关上 powershell
- PS C:\Users\Administrator> set-ExecutionPolicy RemoteSigned=
执行策略更改
执行策略可帮忙你避免执行不信赖的脚本。更改执行策略可能会产生平安危险,如 https:/go.microsoft.com/fwlink/?LinkID=135170
中的 about_Execution_Policies 帮忙主题所述。是否要更改执行策略?
[Y] 是 (Y) [A] 全是 (A) [N] 否 (N) [L] 全否 (L) [S] 暂停 (S) [?] 帮忙 (默认值为“N”): y -
get-ExecutionPolicy 这个能够查看是否改好
罕用的 NPM 和 YARN 指令
NPM | YAR | |
---|---|---|
初始化 | npm init | yarn init |
默认装置依赖 | npm install | yarn install |
装置某个依赖并保留 | npm install xxxx -save | yarn add xxxx |
装置全局依赖 | npm install -g xxxx | yarn global add xxxx |
移除依赖 | npm uninstall xxxx -save | yarn remove xxxx |
更新依赖 | npm update | yarn upgrade xxxx |
运行指令 | npm run | yarn run |
查看 npm 装置的依赖包版本
以下分两者状况来讲
尚未安装包
- npm view xxx 依赖名 versions(查看所有可用版本)
- npm view xxx 依赖名 version(查看最新版本)
- npm info xxx 依赖名 (查看最新版本)
曾经安装包
- npm ls xxx 依赖名 (查看曾经装置的版本)
- npm ls jquery -g (查看全局装置的版本)