Explore tracked sources

Every software and developer-update source on DevUpdate.io, contributed by the community. Browse without an account, or sign in to add any of these to your dashboard.

Descriptions and status summaries are generated by an AI from publicly available data. They may not reflect the current state of a project. More on AI-extracted content. Project owners can request a correction or removal by emailing info@devupdate.io.

Source:Sort:

stringify-object converts JavaScript objects and arrays into a JSON.stringify-like string, but without double quotes, with optional pretty-print indentation and quote style. It can handle circular references by replacing them with "[Circular]" and supports formatting Maps and Sets, plus options to filter or transform specific properties in the output.

Status:

Actively maintained, with the most recent update being v7.0.0 on 2026-07-02 (only about a week before today, 2026-07-09), indicating ongoing work rather than maintenance mode.

Last release:

551 updates · last 90 days2 watchers
Open

Get the visual width of a string, returning the number of terminal columns required to display it. Useful for sizing and aligning command-line output, with support for fullwidth Unicode characters and stripping ANSI escape codes by default.

Status:

Actively maintained, with steady recent updates (last push 2026-07-08, then v8.2.2 on 2026-07-08, and further updates in 2026-04-27 and 2026-02-18).

Last release:

451 updates · last 90 days2 watchers
Open

Type-safe EventEmitter implementation for browser and Node.js, designed for event-driven architectures that need strict event contracts. It lets you define allowed event names and the argument payload types, so invalid event names or payloads are rejected at runtime with TypeError. Useful when you want safer event handling than the native Node.js EventEmitter type definitions.

Status:

The source appears not to be actively maintained as of today, with the last published update noted at v0.5.1 on 2023-09-21 and the last upstream push on 2024-08-06, which is roughly a year and a half ago relative to 2026-06-09.

Last release:

282 watchers
Open

stdin-discarder discards standard input (stdin) so it does not interfere with command output, while still allowing Ctrl+C to work. It is useful when writing CLI tools with live stdout output like spinners, helping prevent keypresses from causing visual glitches. This has no effect on Windows.

Status:

Actively maintained: The project has recent upstream updates, with the latest update on 2026-04-14 (and another in 2026-01-08), which is close to today (2026-06-11), suggesting ongoing maintenance rather than dormancy.

Last release:

352 watchers
Open

std-env provides runtime-agnostic JavaScript utilities for detecting the current JavaScript runtime, CI/CD provider, and whether the code is running inside an AI coding agent. It also includes environment and platform flags (such as TTY availability, CI, development/production mode, and OS) that can be used by CLI or app code to adapt behavior.

Status:

Actively maintained: Yes. There was an upstream push on 2026-07-08, and a recent tagged update v4.2.0 on 2026-07-07, indicating ongoing development rather than a dormant period.

Last release:

691 updates · last 90 days4 watchers
Open

A Node.js HTTP status utility that provides mappings between HTTP status codes and their standard messages. It exposes helpers to look up a status by code or message, and includes additional metadata like whether a status expects an empty body, is a redirect, or should be retried.

Status:

Active maintenance: The repo shows upstream activity as of 2026-01-03, but the most recently described tagged updates are v2.0.2 (2025-06-06), so it looks more like periodic maintenance than continuous release-driven development.

Last release:

662 watchers
Open

Standard Webhooks is an open standard specification and supporting tools for sending and verifying HTTP webhooks in a consistent, industry-wide way. It includes reference implementations and guidelines to help developers handle webhook signature verification reliably and securely across providers.

Status:

Active maintenance: Evidence suggests the repo is still active, with a recent upstream push on 2026-05-26 (after the last published update on 2026-02-18), indicating ongoing development beyond the latest tagged updates.

Last release:

572 watchers
Open

sqlstring is a JavaScript (Node.js) utility for generating MySQL-ready SQL by escaping values and SQL identifiers, and formatting queries with placeholders. It helps avoid SQL injection by producing an escaped SQL string on the client side, including support for `?` placeholders for values and `??` for identifiers (with notes about SQL mode and differences from prepared statements).

Status:

Maintenance status: The repository’s last upstream push appears to be 2022-04-03, and the most recent tagged update (v2.3.3) is from 2022-03-06, so as of 2026-06-09 the source looks quiet/dormant rather than actively maintained.

Last release:

332 watchers
Open

split2 is a Node.js stream utility that breaks an incoming stream into line-based chunks (by default splitting on newlines) and emits each line as a separate `data` chunk. It can be configured with a string or regular expression matcher, supports options like `maxLength` and `skipOverflow`, and can also transform each line into other values (for example, parsing newline-delimited JSON with a mapper like `JSON.parse`).

Status:

Maintenance status: The source shows no new tagged updates in the provided history since v4.2.0 (2023-03-26), and the last upstream push was 2024-06-10, so as of 2026-06-09 it appears quiet or in maintenance mode rather than actively evolving.

Last release:

502 watchers
Open

sisteransi provides ANSI escape code helpers for terminal and CLI apps, including cursor movement (absolute and relative), cursor visibility, scroll control, and screen or line erasing. It is useful for updating terminal output with features like moving the cursor, clearing regions, and managing the cursor position.

Status:

The repository appears actively maintained as of 2026-06-25, with a fresh update (v2.0.0) and the upstream push occurring on the same date.

Last release:

521 updates · last 90 days2 watchers
Open

signal-exit is a Node.js utility for running an event handler when a process exits, including when execution ends, process.exit is called, process.kill sends a signal, or a fatal external signal is received. It provides an onExit API that receives (code, signal) and can be used to reliably observe exit reasons, with options like alwaysLast to control handler ordering.

Status:

Maintenance status: The most recent observed updates were published in 2023-07-29 (v4.1.0 and v4.0.3), and there is a long gap to today (2026-06-09). While there is an upstream repository push on 2025-10-25, there is no evidence here of corresponding updates being released after 2023, so the project appears largely quiet or in maintenance mode.

Last release:

362 watchers
Open

A set of beautifully designed, accessible UI components with documentation at ui.shadcn.com. It is useful for building and customizing your own component library, and it works with popular frontend frameworks such as React and Next.js.

Status:

Actively maintained: Yes, GitHub upstream push was on 2026-07-29, and the most recent updates are within days (4.16.0 on 2026-07-27, 4.15.0 on 2026-07-25).

Last release:

6918 updates · last 90 days2 watchers
Open

A cross-platform polyfill for `Object.setPrototypeOf`, providing a simple way to set the prototype of an instantiated object. Useful for environments that do not fully support `Object.setPrototypeOf`, including at least IE8 and modern browsers. It is available via npm and includes JavaScript and TypeScript usage examples.

Status:

Maintenance status: The source appears quiet/dormant as of 2026-06-09, with the most recent published updates and tagged changes shown from 2019, and the last upstream push on 2022-06-24. No evidence of recent active maintenance is provided in the update history.

Last release:

302 watchers
Open

`set-blocking` is a small Node.js helper that sets blocking `stdio` and `stderr` so terminal output is less likely to get truncated. It was created as a shim for older Node.js versions where console output could be truncated, and it can have side effects on other modules that use the same process.

Status:

The source does not show evidence of frequent or recent updates for this specific package, with the provided tagged updates dating back to 2016, and an upstream push last recorded on 2023-12-15, suggesting it is likely in a quiet or maintenance mode rather than actively evolving day to day.

Last release:

242 watchers
Open

serve-static is a Node.js middleware that serves static files from a specified root directory, mapping each request URL to a file path. If a file is not found, it can call next() to allow stacking and fallback to other middleware, with options for caching headers, range requests, indexing behavior, and custom response headers.

Status:

Maintenance status: The source appears actively maintained, with recent updates as late as 2025-12-15 (v2.2.1) and an upstream push on 2026-01-03.

Last release:

672 watchers
Open

A Node.js FIFO task queue that ensures asynchronous callbacks are processed serially and in order. Useful for scenarios where you need multiple requests or operations to run one at a time, with per-task timeouts that trigger a timeout event and skip tasks that do not call `task.done()` in time.

202 watchers
Open

Send is a Node.js library for streaming static files from the file system as an HTTP response, including support for partial content (Range requests) and conditional-GET negotiation (using headers like If-None-Match and If-Modified-Since). It provides options and events you can use to control caching, headers, byte ranges, and how files or dotfiles are handled.

Status:

Active maintenance: The repository shows recent upstream activity (last push on 2026-06-01). The most recent published updates in the provided history are version 1.2.1 (2025-12-15) with additional coordinated 0.19.x updates on the same date, which is consistent with ongoing maintenance rather than abandonment.

Last release:

682 watchers
Open

Safer-buffer is a polyfill that provides a “modern” Buffer API for Node.js, targeting compatibility from older Node.js versions (0.8) up to current. It is useful when you need to port code to Buffer.alloc and Buffer.from while still running on outdated Node.js, using require('safer-buffer').Buffer in the files that call the new API.

Status:

The repository is not actively maintained as of today, with the last upstream push on 2021-04-22, and the most recent tagged updates dating back to 2018 (v2.1.2, v2.1.1, v2.1.0). This is consistent with a quiet or maintenance mode state.

Last release:

213 watchers
Open