Skip to content

Latest commit

 

History

History
40 lines (29 loc) · 1.4 KB

README.md

File metadata and controls

40 lines (29 loc) · 1.4 KB

HTTP Utilities

This module is intended to extend the built-in HTTP server and provide a user friendly HTTP client wrapper around node-fetch.

Server

Create a server that defaults to static assets but can be configured to return dynamic responses.

const http = require('@whi/http');

const http_server = new http.server();
const settings = { version: "1.0.0" };

http_server.serve_local_assets( "./public/", function ( req_path ) {
    if ( req_path === "/settings" ) {
        this.contentType("application/json");
        return JSON.stringify( settings );
    }
});

http_server.listen( 8080 );

Client

HTTP client using node-fetch.

const http = require('@whi/http');

const api = http.client.create(`http://localhost:8080`);
const resp = await api.get("/settings");

resp.version === "1.0.0";