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

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

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