@tknf/http-impl
TypeScript icon, indicating that this package has built-in type declarations

1.0.7 • Public • Published

@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");
});

/@tknf/http-impl/

    Package Sidebar

    Install

    npm i @tknf/http-impl

    Weekly Downloads

    1

    Version

    1.0.7

    License

    MIT

    Unpacked Size

    126 kB

    Total Files

    31

    Last publish

    Collaborators

    • mast1ff