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

@yonathan124/zentry

v1.0.0

Published

Zentry — AI-powered DevSecOps engine. Auto-detects vulnerabilities, generates IDE security guardrails, and auto-remediates code.

Readme

Zentry Security Scanner 🛡️

Zentry est un moteur DevSecOps (Sécurité & Qualité) piloté par l'IA, conçu pour sécuriser votre code à la source de manière autonome. Il intègre une approche de "Security By Design", intercepte les commits non sécurisés, et propose une auto-remédiation locale via un Dashboard visuel.

✨ Fonctionnalités V6 (Universal Architecture)

  • Proactif (IDE Guardrails) : Génère automatiquement les règles .cursorrules, .clinerules, .windsurfrules pour forcer l'IA de votre IDE à respecter vos contraintes de sécurité avant l'écriture du code.
  • Auto-Détection de Conformité : Analyse votre package.json et vos schémas (Prisma) pour activer automatiquement les règles RGPD, PCI-DSS, ou HIPAA.
  • Serveur UI Local Indépendant : Pas besoin d'un backend Next.js. Zentry lance son propre serveur Express local pour son Dashboard.
  • Graphe d'Impact (--diff) : En pre-commit, il scanne les fichiers modifiés ainsi que tous les fichiers qui en dépendent, garantissant une non-régression absolue.
  • Preuves d'Audit : Génère des rapports Markdown persistants dans .zentry/reports/.

📦 Installation

```bash npm install -g @orvia/zentry

ou l'ajouter à votre projet local :

npm install --save-dev @orvia/zentry ```

🚀 Utilisation Rapide

1. Initialiser le profil de sécurité

Dans le dossier racine de votre projet, lancez : ```bash npx zentry init ``` Cela génère zentry.config.json et sécurise vos IDE (Cursor, Windsurf, Cline).

2. Lancer le Dashboard Visuel (Serveur Local)

```bash npx zentry ui ``` Ouvre un serveur Express sur http://localhost:8080 avec l'interface d'audit et la fonctionnalité de correction automatique (God Mode).

3. Intégration Git (Pre-commit)

Ajoutez cette ligne dans votre script de pre-commit (.husky/pre-commit ou .git/hooks/pre-commit) : ```bash npx zentry --diff ``` Bloquera les commits si une régression de sécurité est détectée.

4. Audit Global et Rapport

```bash npx zentry ``` Scanne l'intégralité du projet et génère un rapport Markdown dans .zentry/reports/.

⚙️ Configuration (zentry.config.json)

Généré automatiquement par init, vous pouvez le modifier manuellement pour ajouter des règles métier : ```json { "project": "MonProjet", "compliance": ["RGPD", "PCI-DSS"], "sla": "99.9%", "customRules": [ { "category": "SÉCURITÉ", "rule": "Toutes les requêtes externes doivent inclure un timeout." } ] } ```

🔑 Clés API

Zentry utilise les modèles LLM de pointe. Assurez-vous d'avoir au moins l'une de ces variables d'environnement (selon votre choix dans l'UI ou le CLI) :

  • `GROQ_API_KEY` (Recommandé, super rapide avec LLaMA 3.3)
  • `GEMINI_API_KEY`
  • `OPENAI_API_KEY`
  • `ANTHROPIC_API_KEY`