whatisgithub

What is recently-updated?

vidartf/recently-updated — explained in plain English

Analysis updated 2026-07-26 · repo last pushed 2016-12-19

JavaScriptAudience · developerComplexity · 2/5DormantSetup · easy

In one sentence

A command-line tool that scans your project's dependencies and shows you which ones published new versions in the last 24 hours, helping you quickly find the culprit when a build or test suite breaks after a fresh install.

Mindmap

mindmap
  root((repo))
    What it does
      Scans installed dependencies
      Checks publish times
      Reports recent updates
    Use cases
      Debug broken builds
      Investigate CI failures
      Find culprit package
    Tech stack
      JavaScript
      CLI
      npm packages
    Audience
      JS developers
      DevOps teams
      Open-source maintainers
    Workflow
      Run in project folder
      See last-24h updates
      Pin or investigate

Code map

Detail Auto

An interactive map of this repo's files and how they connect — its source is parsed live in your browser. Click Visualize to build it.

filefunction / class

What do people build with it?

USE CASE 1

Quickly find which dependency published a new version in the last 24 hours after your build or tests suddenly break.

USE CASE 2

Diagnose an overnight CI pipeline failure by checking for recently updated third-party packages.

USE CASE 3

Decide whether to pin an older version of a package or investigate an upstream change that just shipped.

USE CASE 4

Get a snapshot of recent dependency changes without manually checking each package or digging through logs.

What is it built with?

JavaScriptCLInpm

How does it compare?

vidartf/recently-updated00kaku/gallery-slider-block0xkinno/vellum
Stars0
LanguageJavaScriptJavaScriptJavaScript
Last pushed2016-12-192021-05-19
MaintenanceDormantDormant
Setup difficultyeasyeasyhard
Complexity2/52/54/5
Audiencedevelopergeneraldeveloper

Figures from each repo's GitHub metadata at analysis time.

How do you get it running?

Difficulty · easy Time to first run · 5min

Run it inside a project folder that already has installed JavaScript dependencies, no extra configuration required.

No license information was provided in the repository's documentation.

So what is it?

recently-updated is a command-line tool that tells you which of your project's dependencies published new versions in the last 24 hours. The core benefit is simple: when your builds suddenly break or tests fail after a fresh install, this tool helps you quickly identify whether a recent update to a third-party package might be the culprit. You run it inside a project folder that contains your installed packages. It scans your dependencies, checks when each one was last published, and shows you a list of any that were updated within the past day, along with their latest version numbers and publish times. Instead of manually checking each package or digging through logs, you get a quick snapshot of what changed recently. This is useful for developers and teams who work in JavaScript projects and have experienced the frustration of a working build suddenly failing for no obvious reason. For example, if your continuous integration pipeline breaks overnight, running this tool can immediately point you to a dependency that shipped a new version hours earlier, helping you decide whether to pin an older version or investigate the upstream change. The project is straightforward and focused. The README doesn't go into detail about advanced configuration or additional features beyond the basic scan-and-report functionality. It's a small, practical utility designed to solve a specific, common annoyance in dependency-heavy JavaScript development.

Copy-paste prompts

Prompt 1
I just cloned a JavaScript project and my build broke after npm install. Write a short shell script that runs `npx recently-updated` in the project folder and then prints any dependency that was published in the last 24 hours.
Prompt 2
Set up a Node.js project and add recently-updated as a dev dependency. Show me the package.json scripts so I can run `npm run check-deps` to see if any packages were updated today.
Prompt 3
Explain how to use the recently-updated CLI tool to create an npm script that checks for recent dependency updates before every CI build, and fails the build if a dependency was published within the last 24 hours.
Prompt 4
My CI pipeline failed overnight after a fresh install. Walk me through running recently-updated in the project directory to find which dependency caused the break, and show how to pin that package to its previous working version in package.json.

Frequently asked questions

What is recently-updated?

A command-line tool that scans your project's dependencies and shows you which ones published new versions in the last 24 hours, helping you quickly find the culprit when a build or test suite breaks after a fresh install.

What language is recently-updated written in?

Mainly JavaScript. The stack also includes JavaScript, CLI, npm.

Is recently-updated actively maintained?

Dormant — no commits in 2+ years (last push 2016-12-19).

What license does recently-updated use?

No license information was provided in the repository's documentation.

How hard is recently-updated to set up?

Setup difficulty is rated easy, with roughly 5min to a first successful run.

Who is recently-updated for?

Mainly developer.

Open on GitHub → Ask about another repo

This repo across BitVibe Labs

Verify against the repo before relying on details.