Blogger Information
Blog 29
fans 1
comment 0
visits 14906
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
Node.Js npm常用命令
Pharaoh
Original
441 people have browsed it

NPM介绍

NPM是跟着nodejs一起安装的包管理工具,可以下载别人封装好的第三方包到本地使用,可以通过npm -v命令查看版本

常用命令

  • npm install moduleName 或者npm i moduleName下载安装包,i 是install 的简写

  • npm i moduleName -S默认安装到当前项目(生产依赖)

  • npm i moduleName -D安装到全局路径(开发依赖)

  • npm root查看默认包路径 npm root -g 查看全局包路径

  • npm outdated产看所有可以升级的包

  • npm update moduleName 升级当前目录下的某个包

  • npm update moduleName -g 升级全局目录下的某个包

  • npm uninstall moduleNamenpm un moduleName -g分别是删除当前目录和全局目录的包

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 - 关键字

Correcting teacher:PHPzPHPz

Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post