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

@eldrex/core

v1.0.6

Published

Core engine for DevDiff — intelligent, privacy-first changelog generation

Readme

@eldrex/core

Core engine for DevDiff — intelligent, privacy-first changelog generation

npm version Socket Score License: MIT

Overview

@eldrex/core is the engine that powers DevDiff. It parses git diffs, analyzes code changes, and generates human-readable changelogs using AI that runs entirely on your machine.

Installation

npm install @eldrex/core

Quick Start

import { generateChangelog } from "@eldrex/core";

const result = await generateChangelog({
  diffText: "...",
  dryRun: false,
});

console.log(result.formattedOutput);

API Reference

Full documentation: devdiff.vercel.app

🔒 Security & Privacy

What This Package Accesses

| Resource | Why | Default | Can Disable | | ----------- | --------------------------------- | ------- | ------------------ | | File System | Read git repos, write changelogs | Yes | No (core function) | | Shell | Execute git, detect tools | Yes | Yes | | Network | Cloud AI, webhooks, notifications | No | Yes (default off) |

What This Package NEVER Does

  • ❌ Send telemetry or analytics
  • ❌ Read files outside your project
  • ❌ Access environment variables except configured API keys
  • ❌ Execute arbitrary shell commands
  • ❌ Share data with third parties

Shell Access Notice

This package may execute shell commands for:

  • Git operations (git log, git diff) — for analyzing code changes
  • Tool detection (which ollama) — to find installed AI providers

All shell access is:

  • Whitelisted (only git, ollama, which, node allowed)
  • Audited (logged to security trail)
  • Disableable (set { security: { disableShellAccess: true } })

Network Access Notice

DevDiff is local-first by default. Network access only occurs when you explicitly configure:

| Feature | Default | Network Required | | --------------------------- | ---------- | ------------------ | | AI Analysis | Local only | No | | Cloud AI (OpenAI, etc.) | Disabled | Yes (your API key) | | Webhooks (incoming) | Disabled | Yes | | Notifications (Slack, etc.) | Disabled | Yes | | Version check | Enabled | Yes (can disable) |

AI Security Disclosure

DevDiff integrates with AI/LLM models for code analysis. We take specific precautions to mitigate AI-related risks:

  • Prompt Injection Protection: All inputs to AI models are sanitized to prevent prompt injection.
  • Data Minimization: We send the minimum data required (only the diff, not the entire file). Secrets are automatically redacted before AI processing.
  • Local-First Default: By default, AI processing uses local models (Ollama, WebGPU, WASM). No data leaves your machine unless you explicitly configure a cloud provider.
  • Model Verification: When using local models, we verify model checksums to prevent supply-chain attacks through model files.

Audit Trail

Every sensitive operation is logged:

npx devdiff audit --package @eldrex/core

License

MIT © DevDiff Contributors