npm 安装 Node.js 模块语法格式如下:
$ npminstall
以下实例,我们使用 npm 命令安装常用的 Node.js web框架模块express:
$npm install express
安装好之后,express 包就放在了工程目录下的 node_modules 目录中,因此在代码中只需要通过require('express')的方式就好,无需指定第三方包路径。
varexpress =require('express');
全局安装与本地安装
npm 的包安装分为本地安装(local)、全局安装(global)两种,从敲的命令行来看,差别只是有没有-g而已,比如
npminstall express# 本地安装npm install express -g# 全局安装
本地安装
1. 将安装包放在 ./node_modules 下(运行 npm 命令时所在的目录),如果没有 node_modules 目录,会在当前执行 npm 命令的目录下生成 node_modules 目录。
2. 可以通过 require() 来引入本地安装的包。
全局安装
1. 将安装包放在 /usr/local 下或者你 node 的安装目录。
2. 可以直接在命令行里使用。
你可以使用以下命令来查看所有全局安装的模块:
$npm ls -g
使用 package.json
package.json 位于模块的目录下,用于定义包的属性。接下来让我们来看下 express 包的 package.json 文件,位于 node_modules/express/package.json
Package.json 属性说明
name- 包名。
version- 包的版本号。
description- 包的描述。
homepage- 包的官网 url 。
author- 包的作者姓名。
contributors- 包的其他贡献者姓名。
dependencies- 依赖包列表。如果依赖包没有安装,npm 会自动将依赖包安装在 node_module 目录下。
repository- 包代码存放的地方的类型,可以是 git 或 svn,git 可在 Github 上。
main- main 字段是一个模块ID,它是一个指向你程序的主要项目。就是说,如果你包的名字叫 express,然后用户安装它,然后require("express")。
keywords- 关键字
卸载模块
我们可以使用以下命令来卸载 Node.js 模块。
$npm uninstall express
卸载后,你可以到 /node_modules/ 目录下查看包是否还存在,或者使用以下命令查看:
$npm ls
更新模块
我们可以使用以下命令更新模块:
$ npmupdateexpress
搜索模块
使用以下来搜索模块:
$npm search express
创建模块
创建模块,package.json 文件是必不可少的。我们可以使用 NPM 生成 package.json 文件,生成的文件包含了基本的结果。
$ npm initThis utility will walk you through creating a package.json file.It only covers the most common items, and tries to guess sensible defaults.See `npmhelpjson` for definitive documentation on these fields
and exactly what they do.
Use `npminstall--save` afterwards to install a package andsaveitasa dependencyinthe package.json file.Press ^Catanytimetoquit.name: (node_modules) runoob # 模块名version: (1.0.0) description: Node.js 测试模块(www.runoob.com) # 描述entry point: (index.js)testcommand: maketestgit repository: https://github.com/runoob/runoob.git # Github 地址keywords: author: license: (ISC) Abouttowriteto……/node_modules/package.json: # 生成地址{"name":"runoob","version":"1.0.0","description":"Node.js 测试模块(www.runoob.com)", ……}Isthis ok? (yes) yes
以上的信息,你需要根据你自己的情况输入。在最后输入 "yes" 后会生成 package.json 文件。
网友评论