A NPM package to post data to hastebin.
npm install hastebin.jsjs
const hastebin = require('hastebin.js');
const haste = new hastebin({ / url: 'hastebin.com / });
const link = haste.post('Helllo from hastebin.js!').then(link => console.log(link));
// Will return a link such as https://hastebin.com/sofomuqifo.js
const raw = haste.get('rejocivu').then(raw => console.log(raw));
// Will return the contents of the haste you provide.
`
Documentation
* Hastebin
* _instance_
* .post(code, extension) ⇒ {Promise
* .get(key) => {Promisestring | Required. The string that you want to post to Hastebin.
string | The extension that you'd like the file to upload as. If not provided, defaults to js
string | Required. The file you'd like to get from Hastebin.