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.
npm-run-path helps you prepend your local `node_modules/.bin` directories to the `PATH` when running commands in npm scripts. It exposes `npmRunPath()` (returns an updated PATH string) and `npmRunPathEnv()` (returns an updated `process.env` object), which is useful for executing locally installed binaries by name via Node.js child processes.
Maintenance status: Likely quiet or in maintenance mode. The most recent upstream push is 2024-10-28, and the latest listed package update is v6.0.0 on 2024-08-26, which is roughly 1.5 years ago relative to 2026-06-09.
Last release:
node-fetch-native is a Node.js fetch implementation intended to provide better backward and forward compatibility by redistributing node-fetch v3 (and more). It offers CommonJS and ESM usage, prefers native fetch when available, and includes proxy support (via HTTP Agent or Undici Proxy Agent) for environments that need HTTP proxy handling.
The repo appears actively maintained, with an upstream GitHub push timestamp today (2026-06-09), though the most recent tagged update in the provided history is v1.6.7 dated 2025-08-02.
Last release:
node-fetch is a lightweight module that brings the Fetch API to Node.js, giving developers a window.fetch compatible way to make HTTP requests. It’s useful for spec-aligned fetch-style client code in Node, including promise-based APIs, native Node stream request and response bodies, and proper content decoding (gzip, deflate, brotli).
Maintenance: The repo shows a recent upstream push on 2026-05-12, but the provided tagged updates and changelog summaries stop in 2023 (newest shown is v3.3.2 from 2023-07-25), suggesting either fewer tags or a lull in published updates since then.
Last release:
This is a Node.js package that provides an implementation of the DOMException class from NodeJS, useful when you need DOMException in environments where it is not easily available to import or require. It is intended for cross-environment use, exposing globalThis.DOMException (when needed) and matching NodeJS behavior and legacy error codes. The project is marked deprecated, with guidance to use the platform’s native DOMException and Node.js 18+.
The repository appears not to be actively maintained, it is marked as archived upstream, and the last upstream push was on 2025-04-19, with no newer updates shown since 2.0.1 (2023-07-17).
Last release:
node-cron is a simple cron-like task scheduler for Node.js, written in pure JavaScript. It lets you schedule jobs using full GNU crontab syntax (including optional seconds) and is useful for running recurring tasks at specified times.
Actively maintained, with very recent GitHub updates (latest update v4.6.0 on 2026-07-05, and the previous updates on 2026-06-21 and 2026-06-18).
Last release:
node-addon-api is a header-only C++ wrapper for Node-API, designed to make it easier to build Node.js native add-ons in C++. It provides a C++ object model and exception handling with low overhead, while targeting supported Node-API versions so the resulting addons can run on compatible Node.js releases.
Actively maintained, with very recent activity (last upstream push on 2026-08-12) and ongoing version tags through 2026-08-12 (v8.9.2).
Last release:
next-themes is a React theme abstraction for Next.js that helps you implement dark mode with a small setup. It supports system preference via prefers-color-scheme, prevents theme flashing on load (SSR and SSG), and can sync the active theme across tabs and windows using a ThemeProvider and a useTheme hook.
Maintenance status: The repo shows some recent activity (last upstream push on 2026-02-25), but the most recent published updates tag are from v0.4.6 on 2025-03-11, which is more than a year ago relative to today (2026-06-09). Overall, this looks more like maintenance mode than active evolution.
Last release:
An HTTP content negotiator for Node.js that parses client headers like Accept, Accept-Language, Accept-Charset, and Accept-Encoding to rank and select the most preferred media types, languages, charsets, and encodings. Useful for choosing what content format to respond with based on a request’s preference headers.
jshttp/negotiator appears actively maintained, with an upstream push and tagged update on 2026-08-20 (about a week before today, 2026-08-27).
Last release:
A Node.js utility that compiles PDO-style named placeholders into unnamed placeholders, turning SQL like `:bar` into `?` and producing the corresponding parameter array. Useful when you want to write readable named SQL but run it with drivers that only accept unnamed placeholders.
Actively maintained, with recent upstream activity (last push 2026-06-09) and multiple tagged updates in the past year (v1.1.4 through v1.1.7).
Last release:
MySQL2 is a fast MySQL-compatible MySQL client for Node.js, focused on performance. It supports features like prepared statements, non-utf8 encodings, binary log protocol, compression, SSL, authentication switching, custom streams, and pooling. It is useful for building Node.js applications that need a MySQL client with broad feature support and good performance.
Actively maintained: the last upstream push was on 2026-09-02, and multiple new updates (v3.24.x) arrived in late Aug to early Sep 2026, including bug fixes and performance improvements.
Last release:
mute-stream is a Node.js pass-through stream utility for the npm CLI ecosystem that can silently drop written or incoming bytes when muted. It also supports an optional replacement mode, such as masking characters instead of fully dropping them.
Active maintenance: The source shows recent activity, with a last upstream push on 2026-06-04 and a published v4.0.0 update on 2026-05-08, indicating it is actively maintained rather than dormant.
Last release:
Mock Service Worker (MSW) is an API mocking library for JavaScript that intercepts requests and returns mock responses. It helps developers test and develop against consistent network behavior without stubbing application code, with support for both browser (via Service Worker) and Node.js (via request interception).
Actively maintained: mswjs/msw shows recent upstream activity (last push on 2026-07-08) and a steady stream of updates through July 2026, indicating the project is actively developed rather than dormant.
Last release:
mimic-function is a JavaScript utility that modifies one function to mimic another function’s name and properties. It’s useful when wrapping a function but you want the wrapper to preserve the original function’s identity details, while keeping a modified to.toString() that reflects the wrapper.
Maintenance status: Active maintenance is not evident, the most recent upstream push is 2024-10-28, and the most recent published updates are from 2024-03-14 (v5.0.1). As of 2026-06-09, this source appears quiet/dormant rather than actively maintained.
Last release:
merge-stream merges multiple input streams into a single interleaved stream, useful when you want to combine outputs from several stream sources. It supports dynamically adding more streams via merged.add, and you can check whether any sources were added using merged.isEmpty.
Maintenance status: The upstream GitHub repo shows its last upstream push on 2019-06-20, and the most recent recorded package update is v2.0.0 from 2019-05-23. With a gap of several years to today (2026-06-09), the source appears quiet or dormant, not actively maintained.
Last release:
merge-descriptors merges properties from one JavaScript object into another, including non-enumerable and accessor-defined properties, while preserving property descriptors. It is useful when you need a destination object to receive an accurate copy of a source object's property definitions, with an option to control whether existing properties are overwritten.
The source appears to be inactive as of today (2026-06-09). The last upstream push was 2023-12-21, and the most recent notable updates were in November 2023, with no evidence of recent work since then.
Last release:
Node.js module that parses and formats RFC 6838 media type strings into components like type, subtype, and optional suffix, and can normalize them back into a canonical form. Useful for working with media types in Node applications, with helpers to parse, format, and validate media type strings.
The repository shows recent activity, with upstream pushes as recently as 2026-06-01 and a tagged update (v2.0.0) on 2026-05-27, indicating the source is actively maintained.
Last release:
Marked is a fast markdown parser and compiler that turns Markdown into HTML, designed to be lightweight and implement many markdown features. It can be used in browsers, on servers, or via a command line interface (CLI), and it supports customization through options and extensibility. It also provides documentation and a demo site rendered using Marked.
Actively maintained: Yes, the upstream markedjs/marked project shows frequent recent updates with multiple patch versions in August 2026, indicating ongoing maintenance rather than a dormant state.
Last release:
magic-string is a small, fast utility for manipulating source code as strings, making light edits like replacing characters, prepending, appending, moving, and overwriting. It also generates version 3 source maps (optionally including original content), which can help when transforming code while preserving mapping back to the original.
Actively maintained. Recent updates are very close together (v1.2.3 on 2026-08-26, then v1.2.2 on 2026-08-20, v1.2.1 on 2026-08-19, v1.2.0 on 2026-08-13), and the latest upstream push is 2026-08-26.
Last release: