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:

Svix provides an enterprise-ready webhooks service where developers send webhooks via a single API call and Svix handles deliverability, retries, security, and related webhook infrastructure. This source is useful if you want an open source webhooks server and supporting components, plus documentation and community resources, for building and running webhook dispatch and ingestion workflows.

Status:

Actively maintained: The repo shows ongoing activity, with the last upstream push on 2026-07-01, and recent version updates continuing through late June and May 2026.

Last release:

6010 updates · last 90 days1 watchers
Open

Strip-final-newline is a small utility that removes only the final newline character from a string or Uint8Array, leaving other trailing whitespace intact. It is useful when parsing command output, such as fixing an extra newline at the end of stdout without removing all trailing newlines and spaces.

Status:

This GitHub source is not actively maintained as of today (2026-06-09), since the last upstream push was on 2024-10-28, with no evidence of ongoing updates since then.

Last release:

361 watchers
Open

strip-ansi is a Node.js utility that removes ANSI escape codes from a string, useful for cleaning up terminal-colored output so it displays as plain text. The README notes it provides consistent behavior across Node.js versions and that Node.js includes a built-in equivalent (`stripVTControlCharacters`) based on this package.

Status:

Actively maintained: The GitHub upstream shows a recent push on 2026-02-26, with subsequent published updates (for example v7.2.0 on 2026-02-26), indicating the project is currently maintained.

Last release:

401 watchers
Open

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:

621 updates · last 90 days1 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:

Active maintenance, the repository has recent updates (last upstream push 2026-04-27, with subsequent tags including v8.2.1 on 2026-04-27), indicating it is still being actively developed.

Last release:

452 updates · last 90 days1 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:

281 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:

381 updates · last 90 days1 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:

692 updates · last 90 days2 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:

661 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:

561 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:

331 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:

431 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:

531 updates · last 90 days1 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:

361 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: The upstream GitHub source has a very recent push (2026-07-09), and recent package updates include @shadcn/react patches plus multiple shadcn minor releases within the past month.

Last release:

6916 updates · last 90 days1 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:

301 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:

241 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:

671 watchers
Open