Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

nomsy-paste

lusiddev19ISC1.0.1

A link generator for paste.nomsy.net (a hastebin alternative, because hastebin is being weird)

hastebin, paste

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))