This package has been deprecated

Author message:

sent functionality was merged to got. Use got package instead

sent

3.0.0 • Public • Published

sent Build Status

Simplified HTTP/HTTPS upload requests

Wrapper around got to send POST data from arguments.

Use request if you need more.

Install

$ npm install --save sent

Usage

var sent = require('sent');
 
// Callback mode.
sent('http://devnull-as-a-service.com/dev/null', 'Hello', function (err, data, res) {
    console.log(res.statusCode);
});
 
// Stream mode.
sent('http://devnull-as-a-service.com/dev/null', 'Hello').pipe(fs.createWriteStream('index.html'));

sent(url, content, [options], [callback])

See got for options explanation.

License

MIT © Vsevolod Strukchinsky

Package Sidebar

Install

npm i sent

Weekly Downloads

3

Version

3.0.0

License

MIT

Last publish

Collaborators

  • floatdrop