获取您自己的 Node 服务器
var http = require('http');

http.createServer(function (req, res) {
  res.end(req.url);
}).listen(8080);

              
https://127.0.0.1:8080/?year=2017&month=July