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

@rn-security/cli

v0.1.0

Published

Command-line interface for the React Native Security Toolkit: static security audits, secret scanning, dependency checks and project readiness for the runtime module.

Downloads

174

Readme

@rn-security/cli

rn-security — static security analysis for React Native projects, from the command line.

Part of the React Native Security Toolkit.

npx rn-security audit .                    # every rule, console output
npx rn-security audit . --fail-on high     # exit 1 on a high or critical finding — the CI gate
npx rn-security rules                      # what it checks, and where each rule is documented

Commands

| Command | What it does | | --------------------- | --------------------------------------------------------------------------- | | audit [path] | Every rule, over the whole project | | secrets [path] | Credential detection only | | dependencies [path] | Dependency resolution checks — not a vulnerability scanner | | runtime [path] | Project readiness for the on-device runtime checks; does not touch a device | | report <file.json> | Re-render a saved JSON report in another format | | rules | List the rules this build ships | | mcp [path] | Serve findings to your AI model over the Model Context Protocol |

Formats: console, json, markdown, html, sarif. The SARIF is validated against the specification's own schema and uploads straight to GitHub code scanning.

Exit codes

| Code | Meaning | | ---- | --------------------------------------------------------------------------- | | 0 | Nothing met the failure threshold | | 1 | A finding met --fail-on | | 2 | Usage, configuration or target error | | 3 | The CLI itself failed — a bug in the tool, not a verdict about your project |

The distinction between 2 and 1 is deliberate: a configuration mistake and a security finding are different events, and a pipeline that cannot tell them apart will eventually treat a broken config as a clean scan.

It reports; it does not act

Nothing here edits a file, installs anything, or changes your security configuration. The strongest thing it does is set an exit code, and that is opt-in through --fail-on.

Documentation

Full CLI reference · Rules

Licence

MIT © Muhammad Ahmad