got-promise

Promise wrapper of sindresorhus/got


Keywords
got, promise, bluebird
License
MIT
Install
npm install got-promise@5.0.0

Documentation

got-promise Build Status

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

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