Skip to content
/ http-impl Public

Implementations of the web standard HTTP Request and Response

License

Notifications You must be signed in to change notification settings

tknf/http-impl

Repository files navigation

@tknf/http-impl

Implementations of the web standard HTTP Request and Response.

To get started, open a new shell and run:

npm install --save @tknf/http-impl
# or
yarn add @tknf/http-impl

Getting started with Node.js

const http = require("http");
const { createRequest, sendResponse } = require("@tknf/http-impl/node");

const server = http.createServer((req, res) => {
  const request = createRequest(req);
  const response = new Response("<div>Hello world!</div>", {
    headers: {
      "Content-Type": "text/html;charset=utf-8"
    }
  });
  await sendResponse(res, response);
});

server.listen(3000, () => {
  console.log("Server listening on http://localhost:3000");
});

About

Implementations of the web standard HTTP Request and Response

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks