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

zwischen

v0.1.2

Published

AI-augmented security scanning for vibe coders. Zero-config secrets detection and vulnerability scanning.

Downloads

610

Readme

Zwischen npm Package

Node.js wrapper for Zwischen, an AI-augmented security scanning CLI. This package exposes a JavaScript implementation of the core workflow for Node users.

The Ruby gem in the repository root is currently the canonical implementation. This wrapper has a smaller command surface and may not match every Ruby feature.

Installation

npm install -g zwischen

For local development:

cd packages/npm
npm install
node bin/zwischen.js --help

Commands

zwischen init
zwischen scan
zwischen scan --ai ollama
zwischen scan --ai openai --api-key "$OPENAI_API_KEY"
zwischen scan --format json
zwischen scan --pre-push
zwischen doctor

Supported scan flags:

  • --ai: ollama, openai, or anthropic
  • --api-key: provider API key
  • --format: terminal or json
  • --pre-push: compact hook mode

--format json prints only a JSON document to stdout (no banners), matching the Ruby gem's shape: a summary object (total plus by_severity counts) and a findings array. File paths are relative to the project root, and ignore: globs from .zwischen.yml are applied.

Not currently supported in this wrapper:

  • zwischen uninstall
  • zwischen scan --only ...
  • zwischen scan --changed
  • zwischen scan --format sarif (exits with code 2 and an error message; use the Ruby gem)
  • Ruby's changed-file filtering for --pre-push

Behavior

The package postinstall script attempts to install Gitleaks into ~/.zwischen/bin. zwischen init retries that install if needed, creates .zwischen.yml, checks whether Semgrep is available, and installs or appends a Git pre-push hook when run inside a Git repository.

Semgrep is optional:

pip install semgrep

Configuration

The npm wrapper creates this shape:

ai:
  enabled: true
  pre_push_enabled: false
  provider: ollama
  model: llama3

blocking:
  severity: high

scanners:
  gitleaks: true
  semgrep: true

Blocking severities are high, critical, or none.

License

MIT