neat-request

1.0.3 • Public • Published

neat-request

Light-weight Promise wrap for raw http.request

Install

npm install neat-request

Hello Request

// Now is mostly used for proxy
const request = require('neat-request');

const server = http.createServer(async function(sreq, sres) {
  const url_parts = url.parse(sreq.url);
  const opts = {
    host: 'google.com',
    port: 80,
    path: url_parts.pathname,
    method: sreq.method,
    headers: sreq.headers
  };
  const ext = {
    body: sreq, // pipe server to client request
    // timeout(Num): If None, Default is 15sec
    // toJSON(bool): Default is False.
  };
  const cres = await request(opts, ext);
  sres.writeHead(cres.statusCode, cres.headers);
  cres.pipe(sres); // pipe client to server response
});
server.listen(80, '0.0.0.0');

Dependencies (2)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i neat-request

    Weekly Downloads

    1

    Version

    1.0.3

    License

    MIT

    Last publish

    Collaborators

    • zhuqiuyang