Node.js微服务简单例子

一 下载node.js
下载:node-v8.11.3-x64.msi
然后按提示进行安装
二 测试安装是否成功
三 编写Node.js微服务
1 代码
var http = require('http');
var url = require("url");
var path = require('path');

// 创建server
var server = http.createServer(function(req, res) {
  // 获得请求的路径
  var pathname = url.parse(req.url).pathname;
  res.writeHead(200, { 'Content-Type' : 'application/json; charset=utf-8' });
  // 访问http://localhost:8060/,将会返回{"index":"欢迎来到首页"}
  if (pathname === '/') {
    res.end(JSON.stringify({ "index" : "欢迎来到首页" }));
  }
  // 访问http://localhost:8060/health,将会返回{"status":"UP"}
  else if (pathname === '/health.json') {
    res.end(JSON.stringify({ "status" : "UP" }));
  }
  // 其他情况返回404
  else {
    res.end("404");
  }
});
// 创建监听,并打印日志
server.listen(8060, function() {
  console.log('listening on localhost:8060');
});
2 运行
3 测试
访问 http://localhost:8060/health.json,结果如下
{"status":"UP"}
访问 http://localhost:8060/,结果如下
{"index":"欢迎来到首页"}
访问http://localhost:8060/k,结果如下
404

猜你喜欢

转载自blog.csdn.net/chengqiuming/article/details/80834590