zoukankan      html  css  js  c++  java
  • [Node.js]28. Level 5: Express Server

    Now let's create an express server which queries out for this search term and just returns the json. You'll need to do a few things:

    • Require the express module
    • Create the express server 'app'
    • On a get request to '/', pipe the request(searchURL) to the response.
    • Tell the app to listen on port 8080
    var url = require('url');
    var request = require('request');
    var express = require('express');
    
    options = {
      protocol: "http:",
      host: "search.twitter.com",
      pathname: '/search.json',
      query: { q: "codeschool"}
    };
    
    var searchURL = url.format(options);
    
    var app = express.createServer();
    app.get('/', function(req, response){
        request(searchURL).pipe(response);
    });  
    app.listen(8080);
  • 相关阅读:
    linux终端发送邮件
    ubuntu交换Caps 和 ESC
    pycharm快捷键
    python catch socket timeout
    pgsql restart
    python re.sub
    文件写入与缓存
    HTTP协议再分析
    leetcode-45
    Java的锁
  • 原文地址:https://www.cnblogs.com/Answer1215/p/3881257.html
Copyright © 2011-2022 走看看