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;
}
*/
-
Notifications
You must be signed in to change notification settings - Fork 0
Simple NodeJS library for making HTTP requests (no dependencies)
License
iradul/h2tp
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
About
Simple NodeJS library for making HTTP requests (no dependencies)
Resources
License
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published