Package detail

got-promise

floatdrop28MITdeprecated5.0.0

Use got (http://npmjs.com/got) directly.

Promise wrapper of sindresorhus/got

got, promise, bluebird

readme

got-promise Build Status

Deprecated: Use got directly, since it now have Promise API :tada:.

Install

$ npm install --save got-promise

Usage

var got = require('got-promise');

got('google.com')
    .then(function (res) {
        console.log(res.body);
    })
    .catch(function (err) {
        console.error(err);
        console.log(err.response.body);
    });

got.post('google.com'); // => Promise

API

Look at sindresorhus/got.

License

MIT © Vsevolod Strukchinsky