nomsy-paste

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

Usage no npm install needed!

<script type="module">
  import nomsyPaste from 'https://cdn.skypack.dev/nomsy-paste';
</script>

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