Node.js

Node.js 简介

官网 https://nodejs.org/zh-cn/

Node.js 是一个开源与跨平台的 JavaScript 运行时环境。 它是一个可用于几乎任何项目的流行工具!

Node.js 在浏览器外运行 V8 JavaScript 引擎(Google Chrome 的内核)。 这使 Node.js 表现得非常出色。

HelloWorld

新建 HelloWorld.js 文件

1
2
3
4
5
6
7
8
9
10
11
12
13
const http = require('http')
const hostname = '127.0.0.1'
const port = 3000

const server = http.createServer((req, res) => {
res.statusCode = 200
res.setHeader('Content-Type', 'text/plain')
res.end('hello world\n')
})

server.listen(port, hostname, () => {
console.log(`服务器运行在 http://${hostname}:${port}/`)
})

运行: node HelloWorld.js

如图所示即启动成功,浏览器访问 http://127.0.0.1:3000/即可

npm

NPM是随同NodeJS一起安装的包管理工具,能解决NodeJS代码部署上的很多问题,常见的使用场景有以下几种:

  • 允许用户从NPM服务器下载别人编写的第三方包到本地使用。
  • 允许用户从NPM服务器下载并安装别人编写的命令行程序到本地使用。
  • 允许用户将自己编写的包或命令行程序上传到NPM服务器供别人使用。

更换镜像源:
npm install -g cnpm --registry=https://registry.npm.taobao.org //推荐使用淘宝镜像

查看镜像是否配置成功:
npm config get registry

使用 npm 命令安装模块

npm 安装 Node.js 模块语法格式如下:

npm install <Module Name>

npm 的包安装分为本地安装(local)、全局安装(global)两种,从敲的命令行来看,差别只是有没有-g

1
2
npm install express      # 本地安装
npm install express -g # 全局安装

卸载模块
npm uninstall express


本博客所有文章除特别声明外,均采用 CC BY-SA 4.0 协议 ,转载请注明出处!