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 🙏

© 2025 – Pkg Stats / Ryan Hefner

n8n-nodes-pastebin

v0.1.8

Published

An n8n node to create pastes on a self-hosted Pastebin instance

Readme

n8n-nodes-pastebin

This is an n8n node to create pastes on a self-hosted Pastebin instance.

What is Pastebin?

Pastebin is an open-source, web-based application that allows you to store and share plain text. It is often used to share code snippets, configuration files, or any other type of text. Because it can be self-hosted, it provides a secure way to share secrets and other sensitive information.

This n8n node allows you to interact with your own self-hosted Pastebin instance. You can provide the URL of your instance and the content you want to paste, and the node will generate a secure link to share your text.

Dependencies

This node relies on Puppeteer, which requires several system-level dependencies to run a headless browser. If you encounter errors related to missing shared libraries (e.g., libglib-2.0.so.0), you need to install these dependencies in your n8n environment.

To check for missing dependencies, you can run the check_puppeteer_deps.sh script located in the node's directory. This script will identify any missing libraries and provide apt-get commands for Debian/Ubuntu-based systems.

How to run the dependency check script:

  1. Access the terminal of your n8n container (e.g., docker exec -it <your-n8n-container-id> bash).
  2. Navigate to the node's directory (e.g., /home/node/.n8n/custom/n8n-nodes-pastebin/).
  3. Run the script:
    ./check_puppeteer_deps.sh

If the script reports missing dependencies, you will need to install them. For Docker setups, it's recommended to add these installation commands to your Dockerfile to ensure persistence across container rebuilds.

How to use

  1. Add the Pastebin node to your workflow.
  2. In the node's properties, set the URL of your self-hosted Pastebin instance.
  3. Set the content of the paste. This can be a secret, a code snippet, or any other text.
  4. Execute the workflow.

Output

The node will output the URL of the newly created paste, which you can then share securely.

More Information

For more details, including the source code and development information, visit the GitHub repository.

License

MIT