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:

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

The source does not show updated published package versions since v4.1.0 on 2023-07-29, and the last observed upstream push was 2025-10-25, so it appears largely quiet relative to today (2026-09-10), not actively releasing frequent updates.

Last release:

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

Active maintenance: The repo shows fresh activity, with an upstream push on 2026-09-10 and multiple shadcn and package updates during late Aug to early Sep 2026, indicating ongoing development rather than dormancy.

Last release:

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

This GitHub source (wesleytodd/setprototypeof) appears effectively dormant, with the last upstream push on 2022-06-24, and no recent updates shown in the provided history relative to today (2026-09-10).

Last release:

303 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 upstream appears quiet for user-facing changes, with the last documented upstream push on 2023-12-15, and no tagged updates shown after 2016 (v2.0.0 in 2016), suggesting it is not actively evolving today (relative to 2026-09-10).

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:

Actively maintained: The repo shows recent upstream activity (last push 2026-01-03), and tagged updates continue into late 2025 (v2.2.0 and v2.2.1 in December 2025), suggesting ongoing maintenance rather than a dormant period.

Last release:

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

The repo looks somewhat maintained (upstream push on 2026-06-01), but the most recent published package updates shown are from 2025-12-15, so as of 2026-09-10 it is not clearly “actively” releasing on a steady cadence.

Last release:

663 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 appears quiet and not actively maintained as of today (2026-09-10), with the last upstream push on 2021-04-22 and the provided recent published updates dating to 2018-03 to 2018-04.

Last release:

214 watchers
Open

A Node.js utility for running AppleScript code and returning the result. It provides an async `runAppleScript` (Promise of a string) and a synchronous `runAppleScriptSync` (string result), with options like `humanReadableOutput` to control output formatting and `signal` to cancel execution.

Status:

The GitHub source appears to be actively maintained in the sense that there are recent updates (v7.1.0 on 2025-09-09) and it continues to add API capabilities, including new signal cancellation support for the async runAppleScript API.

Last release:

372 watchers
Open

Simple middleware-style router for Node.js, useful for routing HTTP requests and composing request handlers using `router(req, res, callback)` with `http.createServer` or other web frameworks. It supports typical routing methods like `router.get` and `router.use`, plus options for strictness and case sensitivity, and `router.param` for parameter-specific middleware.

Status:

Maintenance status: The repository shows an upstream push on 2026-06-02, suggesting it is still being worked on, but the provided change history shows no published updates after v2.2.0 (2025-03-27), so maintenance appears ongoing but with limited visible release activity in the evidence here.

Last release:

643 watchers
Open

Rettime is a small TypeScript library that combines browser-style `EventTarget` behavior with Node-style `EventEmitter`, adding event cancellation and type safety. It’s useful for building event-based systems where you want strongly typed event names and payloads, plus convenience helpers like `.emitAsPromise()` and `.emitAsGenerator()`.

Status:

Actively maintained as of the most recent upstream activity, with updates pushed on 2026-05-03 (v0.11.11) and earlier, including a cluster of updates around 2026-03-11 to 2026-03-12.

Last release:

452 watchers
Open

Node-retry provides an abstraction for exponential and custom retry strategies for failed operations in Node.js. It includes helpers to generate retry timeouts, retry an operation multiple times (optionally forever), and wrap object methods so they automatically retry on failure.

Status:

The repository appears largely quiet, with its most recent tagged update noted as v0.13.1 (2021-06-21) and the last upstream push only reaching 2023-09-13, so it does not look actively maintained as of 2026-09-10.

Last release:

323 watchers
Open

Restores the CLI cursor on exit, intended to prevent a hidden cursor from remaining hidden if your process crashes. It is meant for interactive TTY sessions only, and does nothing when run in a non-TTY context.

Status:

The source appears quiet and likely in maintenance mode, with the most recent updates in 2024-07 and no evidence of ongoing development activity since then (as of 2026-09-10).

Last release:

343 watchers
Open

Resend’s official Node.js SDK, a Node library for using the Resend API to send emails. It includes quickstart guidance and examples for common frameworks like Next.js and Express, and it uses a Resend API key from the Resend dashboard.

Status:

The source (resend/resend-node) appears actively maintained, with an upstream push today (2026-09-10) and multiple recent tag updates (v6.27.0 on 2026-09-09, v6.26.0 on 2026-09-03).

Last release:

6919 updates · last 90 days2 watchers
Open

Reselect is a JavaScript library for creating memoized selector functions, commonly used with Redux to compute derived data from state efficiently. It avoids recomputing a selector unless its input arguments change, and it supports composing selectors by using one selector as input to another.

Status:

Actively maintained: Evidence shows continued work in 2026, with the latest upstream push on 2026-08-22 and a corresponding v5.3.0 update the same day.

Last release:

681 updates · last 90 days2 watchers
Open

require-main-filename is a small Node.js shim that provides an alternative to require.main.filename(), intended to work in more execution environments where the original can fail. It is useful for reliably identifying an application entry point, which can then be combined with modules like pkg-conf to load top-level configuration.

Status:

This source appears to be a small shim library, and the last upstream push is dated 2023-12-15, with no evidence of recent updates since then. Based on the age of upstream activity, it looks quiet or in maintenance mode rather than actively maintained as of 2026-09-10.

Last release:

192 watchers
Open

require-from-string is a Node utility that loads a module from a JavaScript code string using `requireFromString(code, [filename], [options])`. It is useful for dynamically evaluating module code from text, with options to prepend or append extra module search paths (appendPaths and prependPaths).

Status:

Upstream floatdrop/require-from-string appears archived, with last upstream push on 2018-04-09, so it is not actively maintained as of 2026-09-10.

Last release:

243 watchers
Open