NPM的使用
2022-06-23 本文已影响0人
div式人格
1.NPM NPM(node pacakage manager)包管理器
NPM是随同NodeJS 一起安装的包管理工具,第三方模块的管理工具:
- 允许用户从NPM服务器下载别人编写的第三方包到本地使用。
- 允许用户从NPM服务器下载并安装别人编写的命令行程序到本地使用。
- 允许用户将自己编写的包或命令行程序上传到NPM服务器供别人使用。
2. npm 常用命令
命令 | 操作 |
---|---|
npm -v(成功出现版本号) | 测试是否成功安装。 |
npm install 依赖名字 | 给当前项目 安装依赖 (local) |
npm install 依赖名 -g(golbal) | 给全局环境安装依赖 (golbal) |
npm uninstall 依赖 | 卸载依赖 |
npm init | 创建项目 |
npm list | 查看依赖 |
npm update | 更新依赖 |
npm search express | 搜索模块 |
npm config set registry | 更新npm源为淘宝源 |
注:
- 依赖:项目中要用的第三方插件
- package-lock.json 配置文件
- node-modules 依赖
- package.json 位于模块的目录下,用于定义包的属性
初始化项目配置,项目根目录中会创建一个package.json文件。
属性 | 内容 |
---|---|
name | 包名。 |
version | 包的版本号。 |
description | 包的描述。 |
homepage | 包的官网 url 。 |
author | 包的作者姓名。 |
contributors | 包的其他贡献者姓名。 |
dependencies | 依赖包列表。npm 会自动将依赖包安装在 node_module 目录下。 |
repository | 包代码存放的地方的类型,可以是 git 或 svn,git 可在 Github 上。 |
main - main | 字段指定了程序的主入口文件,require('moduleName') 就会加载这个文件。这个字段的默认值是模块根目录下面的 index.js。 |
keywords | 关键字 |
{
"name": "test", //包名
"version": "1.0.0", //包的版本号
"description": "这是我用来测试npm的项目", //包的描述
"main": "index.js", //程序的入口文件,默认是index.js
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
//关键字
"keywords": [
"npm"
],
"author": "dabugan", //包作者姓名
"license": "ISC",
// 依赖包列表。如果依赖包没有安装,通过“npm install” 安装所有依赖至node_modules目录下。
"dependencies": {
"jquery": "^3.5.0"
}
}
3. yarn 的创建(包管理器)
属性 | 内容 |
---|---|
npm install -g yarn 或 npm install yarn -g | 全局安装yarn |
yarn -v(verson) | 查看版本号 |
npm uninstall yarn | 卸载yarn |
yarn init | 初始化 |
yarn add 或 yarn install | 安装依赖 |
yarn golbal add | 全局安装依赖 |
yarn upgrade | 更新依赖 |
yarn remove | 删除依赖 |
yarn install | 根据项目配置文件下载所有依赖 |