Skip to content

floatdrop/got-promise

Repository files navigation

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

About

Promise wrapper around sindresorhus/got

Resources

License

Stars

Watchers

Forks

Packages

No packages published