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 🙏

© 2026 – Pkg Stats / Ryan Hefner

joplin-plugin-publish

v1.3.0

Published

This plugin provides an easy way to publish your notes on github using gist so that others can use and give feedback.

Readme

joplin-plugin-publish

This plugin provides an easy way to publish your notes on github using gist so that others can use and give feedback.

What are gists?

settings

You'll need to get an auth code from github https://github.com/settings/tokens and you must specificy the gist scope for it to work

You can choose to publish gist as public or private. if you need to change the scope, you can delete the gist, change the setting, and make a new one. Once it's published as a scope, that's it.

  • github auth token: The github token you get from the link above
  • public: The scope of the gist, either public or private. default is private

My first plugin. Sometimes I've wanted to share a note, and I ended up putting it into evernote so I could do that easily.

This plugin will publish a note as a Github Gist [^Gist]´

[^Gist]: Gists provide a simple way to share code snippets (in this case, notes) with others. Every gist is a Git repository, which means that it can be forked and cloned. If you are signed in to GitHub when you create a gist, the gist will be associated with your account and you will see it in your list of gists when you navigate to your gist home page.

You can install it via the Joplin plugin system.

Why?

  • You can easily share notes and update without having Joplin Cloud share
  • The version history that github allows is better than the version diff (which must be enabled) that Joplin nativly supports
  • Allows readers to make comments on content you share
  • update a note instead of creating a new each time

Requirements

You need to create an auth token with gist scope here: github.com/settngs/tokens

Usage

After you have the token, click the github icon on your note a248f4beef612b778c834aba3ef3589feb3e2cbf

to do

  • upload referenced images

example

https://gist.github.com/danielb2/51430701b35539eb4f2e5ac70f1293f3

Change log

  • version 1.2.0 (2024.08.16) can now choose public or private gist instead of only private
  • version 1.1.0 (2023.06.27) adds ability to modify gists. Clicking the github button will now update a gist thanks to https://github.com/laurent22/joplin/issues/8080 being implemented