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:

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 source appears quiet, with the last documented update on 2025-09-09 (about 9 months ago as of 2026-06-09), and no evidence in the provided history of ongoing rapid activity or new major work since then.

Last release:

392 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 repo appears to be under ongoing development (there was an upstream push on 2026-06-02), but the most recently documented tagged updates are older (last noted version is v2.2.0 on 2025-03-27), so it is evolving rather than consistently shipping releases.

Last release:

662 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, with the most recent upstream push on 2026-05-03 and multiple recent updates (v0.11.9 through v0.11.11) landing within days, suggesting responsive ongoing development rather than a dormant state.

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:

Maintenance status: GitHub updates last appear to be v0.13.1 on 2021-06-21, with the last upstream push on 2023-09-13, which is now about 2.8 years before today (2026-06-09), so the project looks quiet/dormant rather than actively maintained.

Last release:

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

Maintenance status: The repo appears quiet, with the last upstream push on 2024-07-26 and no updates after that as of 2026-06-09. It does not look actively maintained right now.

Last release:

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

Actively maintained: GitHub upstream push was 2026-07-29, and the npm updates are coming in consistently through 2026-07-28 (v6.18.1) and 2026-07-21 (v6.18.0), indicating ongoing development rather than maintenance mode.

Last release:

6911 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: The source (reduxjs/reselect) shows recent upstream activity (last push 2026-05-18) and a current version update (v5.2.0 on 2026-05-15), indicating ongoing maintenance rather than dormancy.

Last release:

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

The source appears not to be actively maintained right now, with the most recent tagged update in the provided history dating to v2.0.0 (2019-01-28). An upstream push is noted on 2023-12-15, but there is no evidence of subsequent tagged updates in the provided summaries.

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:

Maintenance status: Appears dormant/in maintenance mode. The upstream is marked archived, and the last upstream push was 2018-04-09 (over 8 years ago as of 2026-06-09).

Last release:

242 watchers
Open

require-directory is a Node.js utility that recursively iterates over a specified directory, calls require() for each file, and returns the results as a nested hash (tree) of module exports. It is useful for building structured module exports automatically, such as mapping a routes directory into an object you can access by name.

242 watchers
Open

Remeda is a JavaScript and TypeScript utility library focused on “data-first” and “data-last” operations. It’s useful for building functional-style data pipelines, with TypeScript-first typing, lazy evaluation support, and documented APIs for common collection transformations.

Status:

Active maintenance: The source shows ongoing work with the last upstream push on 2026-06-09, and multiple recent v2.xx updates with both type-level fixes and some runtime/signature adjustments (for example, splice).

Last release:

816 updates · last 90 days2 watchers
Open

regexp-to-ast is a JavaScript utility that reads a JavaScript Regular Expression literal (pattern text) and converts it into an Abstract Syntax Tree (AST). It also provides a visitor API (BaseRegExpVisitor) so you can traverse the AST and run custom logic for parsing and inspecting regex structure.

Status:

The repository shows long periods without published updates, with the latest tagged update in the provided history being v0.5.0 (2019-12-11) and the last upstream push dated 2023-06-06, so as of 2026-06-09 the source appears quiet or in maintenance mode rather than actively maintained.

Last release:

242 watchers
Open

Recast is a JavaScript syntax tree transformer, with a nondestructive pretty-printer that reprints modified code while preserving existing formatting where possible. It also generates automatic source maps to map between original and transformed code, making it useful for safe code transformations and debugging.

Status:

Maintenance status: The most recent upstream push and corresponding updates were on 2025-03-03, and there have been no documented updates since then, which suggests the project is quiet or in maintenance mode rather than actively evolving as of 2026-06-09.

Last release:

522 watchers
Open
GitHub

rc9 is a small JavaScript utility for reading, parsing, updating, and writing simple RC-style configuration files, including support for reading and writing user config in the user’s config directory (XDG, or ~/.config). It helps developers work with .conf files using flat key notation like dot-separated keys, and it can convert values to native JavaScript types when reading.

Status:

Actively maintained: Yes, the GitHub source shows very recent activity (last upstream push on 2026-06-10) and there are follow-on updates in 2026 (v3.0.1 on 2026-04-01).

Last release:

622 watchers
Open

raw-body is a Node.js module that reads and returns the entire raw body from a readable stream as a Buffer or string. It validates the body size and expected length (with configurable limit and encoding), making it useful for parsing HTTP request bodies safely.

Status:

Actively maintained, with a recent upstream push on 2026-07-12 and a new major update (v4.0.0) on that date.

Last release:

691 updates · last 90 days2 watchers
Open

range-parser is a Node.js module for parsing the HTTP Range header field. It turns a range request into subranges for a given representation size, and returns negative values for malformed headers (-2) or unsatisfiable ranges (-1), with an option to combine overlapping or adjacent ranges.

Status:

Actively maintained: Yes, upstream shows a recent push on 2026-06-25, and the latest published update v1.3.0 (2026-06-25) indicates ongoing maintenance rather than dormancy.

Last release:

541 updates · last 90 days2 watchers
Open
GitHub

qs is a JavaScript querystring parser and serializer for turning query strings into objects and back into strings. It supports nested keys using square bracket notation and includes options for things like decoding, limits on nesting depth and parameter counts, and safer handling of prototype-related keys.

Status:

Actively maintained and evolving: The repo shows an upstream push on 2026-06-24, and the most recent updates (v6.15.3, 2026-06-24) were published just hours before today (2026-06-25), indicating ongoing maintenance.

Last release:

592 updates · last 90 days2 watchers
Open

node-qrcode (soldair/node-qrcode) is a QR code, 2D barcode generator for Node.js, the browser (via bundlers), and React Native (SVG). It supports a CLI utility and can render QR codes as images, SVG, UTF-8/terminal output, and data URLs, with configurable encoding modes and error correction.

Status:

Active maintenance, not likely, last known upstream push was 2024-08-23, and the most recent published update in the provided list was v1.5.4 on 2024-08-05, so relative to 2026-06-09 this appears quiet or in maintenance mode.

Last release:

302 watchers
Open