First of all you have to download the package with npm install @jeremyx9/hastebin.js
const Hastebin = require("@jeremyx9/hastebin");const paste = new Hastebin();async function createPaste() {
const url = await paste.newPaste("$world = new World();");
console.log(url); // egasiwulog -> you can set the url before (https://www.toptal.com/developers/hastebin/egasiwulog)
}async function getPaste() {
const data = await paste.getPaste("egasiwulog");
console.log(data); // $world = new World();
}