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

@firestitch/app-tools

v18.0.40

Published

`npm run serve [args]`

Readme

Serve

npm run serve [args]

| Arg | Value | Default | | ------------ | ------------ | ------------ | | --env | string | local | | --project | string | first project in angular.json | | --port | number | package.json → config → port | | --host | string | the project's angular.json → serve → options → host, else <package name>.local.firestitch.com | | --secure | boolean | false | | --live-reload | boolean | false |

Build

npm run build [args]

| Arg | Value | Default | | ------------ | ------------ | ------------ | | --env | string | dev |

Package

npm run package [args]

| Arg | Value | Default | | ------------ | ------------ | ------------ | | --env | string | production |

SSL

npx ssl [command]

| Command | Description | | ------------ | ------------ | | info | Show the certificate hosts, expiry and whether the CA is trusted (default) | | trust | Install the development root CA into this machine's trust store | | untrust | Remove it again | | reissue | Reissue only the certificate, e.g. after editing its hostnames. No re-trust needed | | generate | Reissue the CA and the certificate. Forces every developer to rerun trust |

serve --secure uses ssl/localhost.crt, issued by the Firestitch Development Root CA and valid for localhost, local.firestitch.com, *.local.firestitch.com, 127.0.0.1 and ::1.

Browsers only trust a certificate whose issuer is in the machine's trust store, so each developer runs npx ssl trust once per machine to get a padlock instead of the "Your connection is not private" interstitial. Windows will show a one-time security confirmation; accept it. Restart the browser afterwards.

Chrome, Edge and Firefox all pick the CA up from the Windows store — Firefox enables security.enterprise_roots.enabled by default there. On macOS and Linux, Firefox uses its own store instead, so import ssl/ca.crt under Settings → Privacy & Security → Certificates.

Firefox validates certificates far more strictly than Chrome, and because this certificate is name constrained it parses every subject alternative name rather than only the one it is matching. One entry Firefox dislikes therefore rejects the whole certificate with SEC_ERROR_BAD_DER on every host. Keep the hostname list conservative, and after changing it run npx ssl reissue and check the result in Firefox, not just Chrome.

The CA private key ships publicly in this repo, which is only acceptable because the CA carries a critical name constraints extension limiting it to the hosts above. A machine that trusts this root still rejects a certificate it issued for any other domain, so the key cannot be used to intercept real traffic. Never reuse it outside development.

The certificate expires in 2036 and the CA in 2046. To reissue, run npx ssl generate — changing the CA means every developer must rerun npx ssl trust, so prefer adding hostnames under *.local.firestitch.com (covered by the existing certificate) instead.