1.1.5 • Published 5 years ago

@wowsaruss/ask v1.1.5

Weekly downloads
-
License
MIT
Repository
github
Last release
5 years ago

ASK

A simple wrapper for node-fetch

View on NPM

Usage

Add it to your repo.

$ npm install @wowsaruss/ask

Require ask at the top of you node.js file.

const ask = require('@wowsaruss/ask');

Making a GET request.

async function makeRequest() {
    return await ask("http://google.com");
}

Making a POST request.

async function makeRequest(headers) {
    return await ask("http://google.com", { method: "POST", headers, responseType: "json" });
}
1.1.5

5 years ago

1.1.4

5 years ago

1.1.3

5 years ago

1.1.2

5 years ago

1.1.1

5 years ago

1.1.0

5 years ago

1.0.0

5 years ago