Mac 上配置 Node.js 环境

原来本机是通过官网下载 pkg 包直接安装的,版本 4.x,现在尝试升级到 5.8.0

安装 Homebrew (推荐安装)

官网

安装 node

1
$ brew install node

Homebrew 来安装一个 node,或者从官网下载 pkg 来安装,总之我们得先自己装一个 node

安装 n 管理 node 版本

1
2
# 安装到全局
$ npm install -g n

n 管理 node 版本

1
2
3

$ n install 5.8.0

测试是否成功

1
2
3
4
$ node -v

v5.8.0

Hello World

hello.js

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
const http = require('http');



const hostname = '127.0.0.1';

const port = 1337;



http.createServer((req, res) => {

res.writeHead(200, { 'Content-Type': 'text/plain' });

res.end('Hello World\n');

}).listen(port, hostname, () => {

console.log(`Server running at https://${hostname}:${port}/`);

});

运行

1
$ node hello.js

相关链接:

文章来自: https://hanks.pub