Mac 下 nodejs 学习
Mac 下 nodejs 学习
http://www.jianshu.com/p/a3506384fa12
Mac +WebStorm+nodeJs+Freemarker.js的安装与使用
http://www.jianshu.com/p/d701a49a5032
想学习 angularjs 结果看得视频教程是在 nodejs 基础上的,就决定先学一下 nodejs 以下是安装过程,平台是 mac。
1). Homebrew 安装 Nodejs
$ brew install node
// 查询安装成功与否,可通过查询版本:
$ node -v
2). 发起服务器
// 以下代码可从官网下载
const http = require('http');
const hostname = '127.0.0.1';
const port = 1337;
var server = http.createServer((req, res) => {
res.writeHead(200, { 'Content-Type': 'text/plain' });
res.end('Hello World\n');
})
server.listen(port, hostname, () => {
console.log(`Server running at http://${hostname}:${port}/`);});
3). 启动服务器
node servere.js
// 改变服务器设置的值后,可在此执行此命令,查看改变值。
最后在浏览器哪里访问http://127.0.0.1:1337/
,能看到Hello World输出;
还用nvm安装方式