惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

V
V2EX
IT之家
IT之家
博客园 - 叶小钗
雷峰网
雷峰网
T
Tailwind CSS Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
S
SegmentFault 最新的问题
Apple Machine Learning Research
Apple Machine Learning Research
爱范儿
爱范儿
博客园 - 【当耐特】
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
大猫的无限游戏
大猫的无限游戏
Last Week in AI
Last Week in AI
月光博客
月光博客
酷 壳 – CoolShell
酷 壳 – CoolShell
Jina AI
Jina AI
博客园 - Franky
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
宝玉的分享
宝玉的分享
阮一峰的网络日志
阮一峰的网络日志
Hugging Face - Blog
Hugging Face - Blog
博客园 - 司徒正美

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
I Turned npm outdated into a CI Gate — Here's How
Sulthon Zain · 2026-05-25 · via DEV Community

Sulthon Zainul Habib

You run npm outdated and see a list of stale packages. But your CI doesn't care. It passes anyway. Dependencies drift until something explodes in production. There's no built-in way to fail the build when versions drift too far.

The Problem

npm outdated lists outdated dependencies, but:

  • No exit codes — CI cannot gate builds on the result
  • No threshold configuration — you can't say "fail if >2 minors behind"
  • No distinction between prod and dev dependencies in many workflows
  • Manual updates become a fire drill instead of a controlled process

A typical scenario: Your team wants to stay current with security patches, but you can't update everything. You need a rule: "No production dependency more than 2 minor versions behind latest." npm outdated can't enforce that.

The Solution

I built npm-outdated-check to turn npm outdated into a first-class CI citizen with:

  • Semantic version thresholding (major/minor/patch drift limits)
  • Meaningful exit codes (0 = pass, 1 = violation, 2 = config error, 3 = network error)
  • Configurable via CLI flags or a .npm-outdated-check.json config file
  • Production/dev dependency filtering
  • Multiple output formats (text, table, JSON)

How It Works

The tool reads your package.json, queries the npm registry for each dependency, calculates the semantic version difference, and flags anything that exceeds your thresholds.

Key implementation details:

  1. Registry fetching: Hit the npm registry endpoint for each package and extract the dist-tags.latest version
  2. Semver diff: Use semver to parse coerce(current) and parse(latest), then compute major/minor/patch differences
  3. Violation logic: A package violates if any diff exceeds its configured maxMajor/maxMinor/maxPatch
  4. Exit codes: CI reads the exit code and fails the build when violations exist

Sample threshold calculation:

const majorDiff = latest.major - current.major;
const minorDiff = latest.minor - current.minor;
const patchDiff = latest.patch - current.patch;

const isViolation =
  majorDiff > config.maxMajor ||
  minorDiff > config.minorDiff ||
  patchDiff > config.maxPatch;

Enter fullscreen mode Exit fullscreen mode

Getting Started

Install globally or as a dev dependency:

npm install -D npm-outdated-check

Enter fullscreen mode Exit fullscreen mode

Run it in CI with sensible defaults (major=0, minor=2, patch=5):

npx npm-outdated-check

Enter fullscreen mode Exit fullscreen mode

Add it to GitHub Actions:

name: Dependency Check

on: [push, pull_request]

jobs:
  outdated-check:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: actions/setup-node@v4
        with:
          node-version: '18'
      - run: npm install
      - run: npx npm-outdated-check --max-minor 3

Enter fullscreen mode Exit fullscreen mode

If a dependency is 4 minor versions behind, CI fails and you get notified.

Why This Matters

  • Controlled updates: Set thresholds to avoid surprise breaking changes
  • Security posture: Enforce staying within N patch versions of latest
  • Team consistency: Config rules checked automatically in CI
  • Zero config: Works out of the box with smart defaults

What's Next

Roadmap items include:

  • Configurable notification channels (Slack, email)
  • Automated PR generation for outdated packages
  • Support for Yarn and pnpm lockfiles
  • Monorepo workspace awareness

Links