npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

pastedeno

v0.6.1

Published

Pastebin client for Deno/Node

Downloads

18

Readme

PasteDeno

GitHub release (latest by date) NPM Version GitHub Release Date GitHub code size in bytes GitHub GitHub last commit GitHub issues GitHub Workflow Status Codecov Deno docs

Pastebin Client for Deno/Node

This is a continuation of pastebin-ts and its predecessor pastebin-js. The main difference between Pastedeno and its predecessors is that it is completely rewritten and uses less dependencies (and up-to-date ones). Alongside the Deno version a Node version is automatically published to NPM.

Capabilities

Pastebin API

  • Create a new paste (with optional title, format, privacy and expiration)
  • Get a paste (raw)
  • Delete a paste
  • Get user info
  • Get user pastes

Scraper (PRO only)

  • Scrape latest pastes
  • Get raw paste
  • Get paste metadata

Packages used

For the Deno version the following packages are used:

For the Node version the following packages are used:

API

API Docs can be found on Deno Docs: https://deno.land/x/pastedeno/mod.ts

Installation

Deno

import { Pastebin } from "https://deno.land/x/pastedeno/mod.ts";

Node

Run npm install pastedeno or yarn add pastedeno

import { Pastebin } from "pastedeno";

Usage

Pastebin API

import { Pastebin, PrivacyLevel, ExpirationTime } from "https://deno.land/x/pastedeno/mod.ts";

// Create a new Pastebin instance
const pastebin = new Pastebin({
  api_dev_key: "<YOUR API DEV KEY>",
  api_user_name: "<YOUR USERNAME>",
  api_user_password: "<YOUR PASSWORD>",
})

// Create a new paste
const paste = await pastebin.createPaste({
    code: "console.log('Hello World!')",
    title: "Hello World",
    format: "javascript",
    privacy: PrivacyLevel.PRIVATE,
    expiration: ExpirationTime.ONE_DAY
});
// paste = 'https://pastebin.com/XXXXXXXX'

// Get the raw paste (either use the paste url or the paste id)
const raw = await pastebin.getPaste('https://pastebin.com/XXXXXXXX');

// Get the raw private paste
const rawPrivate = await pastebin.getPaste('https://pastebin.com/XXXXXXXX', true);

// Delete the paste
await pastebin.deletePaste('<paste id>');

// Get user info
const userInfo = await pastebin.getUserInfo();

// Get user pastes
const userPastes = await pastebin.listUserPastes();

// Set debug mode
pastebin.setDebug(true);

Scraper (PRO only)

import { Scraper } from "https://deno.land/x/pastedeno/mod.ts";

const scraper = new Scraper({
  intervalTime: 5000,
  limit: 10,
});

scraper.on("scrape", (data) => {
  console.table(data);
});

scraper.on("new", (data) => {
  console.log(`New paste: ${data.key}`);
});

scraper.on("error", (error) => {
  console.error(error);
});

scraper.start();

License

MIT


"Buy Me A Coffee"