nomsy-paste
v1.0.1
Published
A link generator for paste.nomsy.net (a hastebin alternative, because hastebin is being weird)
Downloads
22
Readme
nomsy-paste
A link generator for https://paste.nomsy.net (a hastebin alternative, because hastebin is being weird) https://www.npmjs.com/package/nomsy-paste
Installation
npm i nomsy-paste
Examples
const h = require('nomsy-paste');
h('code', 'js').then(r => {
console.log(r);
}).catch(console.error);
require('nomsy-paste')(require('fs').readFileSync(__filename), 'js').then(r => console.log(r))