Skip to content
/ h2tp Public

Simple NodeJS library for making HTTP requests (no dependencies)

License

Notifications You must be signed in to change notification settings

iradul/h2tp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

const H2TP = require("./h2tp");

// simple GET request
H2TP.httpreq('http://example.com').then((r) => console.log(r.body));

// POST request
H2TP.httpreq({
    url: 'http://example.com',
    method: 'POST',
    payload: { data: "dummy" }, // since it's JavaScript object, it will be submitted as [Content-Type:application/json]
}).then((r) => {
    const data = r.body.trim();
    console.log(data);
    process.exit();
}, (err) => {
    console.log("error: " + err);
    process.exit();
});

/*
All options:
{
    url: string;
    method: 'GET'|'HEAD'|'POST'|'PUT'|'DELETE'|'TRACE'|'OPTIONS'|'CONNECT'|'PATCH';
    compression?: boolean; // default: true
    headers?: any;
    payload?: any;
    timeout?: number;
    proxy?: string;
    proxyTunneling?: boolean; // default: true
    maxRedirs?: number;
    agent?: http.Agent | https.Agent;
    onData?: (chunk: Buffer | string) => void;
    onSocket?: (socket: net.Socket) => void;
    onRequest?: (req: http.ClientRequest) => void;
}
*/

About

Simple NodeJS library for making HTTP requests (no dependencies)

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published