欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

npm 和yarn 使用指南

程序员文章站 2022-05-31 11:03:47
...

1.NPM和Yarn概念?

NPM 是随 NodeJs 一同安装的 JavaScript 的包管理器。
NPM 官网:https://www.npmjs.com/
Yarn 是
Yarn 官网:

2.安装

npm一般安装node时,就自带了npm,主要讲yarn的安装。

npm install -g yarn

3.NPM和yarn常用指令

npm yarn 说明
npm -v yarn -v 查询版本
npm init yarn init 初始化某个项目
npm install yarn install 默认的安装项目依赖
npm install test —save yarn add test 安装某个依赖,并且默认保存到package.json
npm install test—save-dev yarn add test —dev 安装某个开发时依赖项目
npm install test --global (缩写npm i test-g ) yarn global add test  安装某个全局依赖项目
npm install [name]@版本号 yarn add [name]@版本号 安装指定版本
npm update test —save yarn upgrade test 更新某个依赖项目
npm uninstall test —save yarn remove test 移除某个依赖项目
npm publish/login/logout yarn publish/login/logout 发布/登录/登出,一系列NPM Registry操作
npm start/test/run build/run eject yarn start/test/run build/run eject 启动/测试/打包

 

 

 

 

4).实例解说
a. 被写入到dependencies,它是对生产环境所需依赖的声明(开发应用中使用的框架,库) ,比如:jq,react,vue都需要放到这里面。

npm install webpage --save   
npm i -S webpage

b. 被写入到 devDependencies 对象(pakeage.json),devDependencies是对开发环境所需依赖的声明(构建工具,测试工具) 比如:babel,webpack,都放到当前目录

npm install webpage -save-dev   
npm i -D webpage