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

@saasy-labs/saasy-markdown

v1.0.27

Published

saasy markdown preview

Readme

SAASY-MARKDOWN

SAASY Markdown npm lib

Step 4: Install package inside your project using npm

Installing packages

These packages are published to GitHub's private npm registry. As long as you have access to this repository, you should be able to install them like a normal npm package.

Step 1: Add .npmrc to project

At the root of your project, add an .npmrc file if it doesn't exist, and paste the snippet below:

@saasy-labs:registry=https://npm.pkg.github.com
//npm.pkg.github.com/:_authToken=${GITHUB_TOKEN}

This will tell npm to resolve packages scoped to @saasy-labs to npm.pkg.github.com.

Step 2: Create a Personal Access Token on GitHub

Next, you will need to create a personal access token on GitHub with at least the read:packages scope. If you are contributing to a package in this repo, you can also grant write:packages as well.

Step 3: Add GITHUB_TOKEN to local environment

Copy the token created in step 2. You will need to add this as an environment variable in your shell.

In your .zshenv or .bashrc (or whatever equivalent if you don't use zsh or bash, respectively) located in your $HOME directory (~), export a variable called GITHUB_TOKEN with the value being the token created during step 2.

export GITHUB_TOKEN=ghp_1a2b3c4d5e6f7g8h9i0j9k8l7m6n5o4p3q2r

:warning:DO NOT commit this token to any repository or share it.

Step 4: Install packages

Now you should be able to install packages as a dependency in your project:

npm install @saasy-labs/saasy-markdown

Install package using yarn v1

Step 1: Add .npmrc to project

At the root of your project, add an .npmrc file if it doesn't exist, and paste the snippet below:

SaaSy-Labs:registry=https://npm.pkg.github.com
//npm.pkg.github.com/:_authToken=${GITHUB_TOKEN}
always-auth=true

Step 2: Create a Personal Access Token on GitHub

Next, you will need to create a personal access token on GitHub with at least the read:packages scope. If you are contributing to a package in this repo, you can also grant write:packages as well.

Step 3: Add GITHUB_TOKEN to local environment

Copy the token created in step 2. You will need to add this as an environment variable in your shell.

In your .zshenv or .bashrc (or whatever equivalent if you don't use zsh or bash, respectively) located in your $HOME directory (~), export a variable called GITHUB_TOKEN with the value being the token created during step 2.

export GITHUB_TOKEN=ghp_1a2b3c4d5e6f7g8h9i0j9k8l7m6n5o4p3q2r

:warning:DO NOT commit this token to any repository or share it.

Step 4: Install packages

Now you should be able to install packages as a dependency in your project:

yarn add SaaSy-Labs/sassy-markdown

Publishing a new version for lib maintener

npm run rollup

Change version number inside package.json then commit and push changes


After that you can manually run the publish command.

```sh
npm publish --registry=https://npm.pkg.github.com