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 module for adding dynamic instrumentation to an EventEmitter by wrapping its event listeners. It calls a provided function when listeners are registered and another provided function to prepare the listener before it runs on emit, and it can restore the original behavior via emitter.__unwrap(). Useful for observing or augmenting how EventEmitter listeners behave without changing application code.

Status:

The repository shows no published updates (tagged versions) since v1.1.1 on 2017-11-20, which suggests the project is largely not actively maintained today; the last upstream push was 2023-04-15, but there is no corresponding recent tagged update evidence.

Last release:

151 watchers
Open

A Node.js library that converts ECDSA signatures between JOSE and ASN.1/DER (DER) encodings. It provides functions to translate DER to JOSE-style concatenated signatures and back, targeting algorithms ES256, ES384, and ES512.

Status:

Maintenance status: The latest described updates are from 2019-01-25 (v1.0.11), with no evidence of recent versioned changes since then, which suggests the package is largely quiet / maintenance mode. However, a recent upstream push on 2026-07-07 indicates there may be ongoing work, even though it is not reflected in new published update entries here.

Last release:

291 watchers
Open

Provides East Asian Width (from Unicode TR11) for a given character, returning categories like Fullwidth (F), Halfwidth (H), Wide (W), Narrow (Na), Ambiguous (A), or Natural (N). Useful for estimating character display width, including helper functions such as characterLength and length for strings.

301 watchers
Open

dprint-node provides a Node.js API for the dprint TypeScript and JavaScript code formatter. It lets developers format code by passing a file path and code to `dprint.format`, with optional formatter configuration options.

Status:

The repo/source appears not to be actively maintained as of today (last upstream push 2023-09-15, about 3 years ago), so it is effectively quiet or in maintenance mode.

Last release:

291 watchers
Open

Detect-newline is a small JavaScript utility that inspects a string and returns the dominant newline character it contains (such as `\n` or `\r\n`). It is useful for normalizing or handling text files when you need to detect whether lines are separated by a specific newline style, and returns `undefined` when no newline is found (or `\n` in the “graceful” variant).

Status:

Maintenance status: The last upstream push and latest recorded updates are from 2023-09-23, which is nearly three years ago as of 2026-08-13, so the repository appears quiet/dormant rather than actively maintained.

Last release:

331 watchers
Open

This is a simple Node.js dependency graph library for building a graph of named nodes and their dependencies. It helps determine processing order and related sets, such as direct or transitive dependencies and dependants, and includes cycle detection for dependency cycles. Useful for computing an overall order of tasks where some items must be done before others.

Status:

Maintenance status: The repo appears quiet / in maintenance mode. The last published update in the provided history is 1.0.0 (2023-12-06), with no newer published updates shown through today (2026-08-13), even though there is an upstream push recorded for 2025-11-18.

Last release:

371 watchers
Open

Defer-to-connect is a small Node.js helper for handling the `connect` socket event safely. It ensures your callback or listener functions run only when the socket is actually connected (and can also call `secureConnect` and `close` handlers). This is useful to avoid manual checks when a socket may already be connected or disconnected.

Status:

This GitHub source appears largely dormant, with the most recent updates dating to 2021-05-12, which is about 5 years ago relative to 2026-08-12, so it is not actively maintained in the present day.

Last release:

191 watchers
Open

Provides a `defaults` helper to deeply merge user options with specified default values, returning a new object. Useful for filling in missing option fields (including nested objects) without mutating the inputs, and it includes protections like prototype pollution safeguards.

Status:

Actively maintained: yes, the upstream pushed on 2026-07-23, which is within a few weeks of today (2026-08-13), and that indicates recent attention to the repo.

Last release:

381 watchers
Open

Deep-object-diff is a small JavaScript library for computing deep differences between two objects, including nested arrays and nested objects. It returns the overall diff, or you can get only added, deleted, updated, or a detailed breakdown of added, deleted, and updated changes. Useful for comparing complex object states and generating change sets.

Status:

The source shows evidence of prior maintenance (multiple patch updates, including a security fix), but based on the last recorded upstream push in 2024-03-04 and no update entries after 2022-11-12, it appears quiet or in maintenance mode as of 2026-08-13.

Last release:

301 watchers
Open

Decompress-response is a Node.js utility that automatically decompresses an HTTP response when it is gzipped, deflated, or Brotli-compressed, otherwise it passes the response through unchanged. It returns the decompressed HTTP response stream and is used by the got HTTP client.

Status:

The source sindresorhus/decompress-response appears actively maintained, with recent updates including v10.0.0 on 2025-10-13 (relative to today, 2026-08-13, this is within the last year).

Last release:

371 watchers
Open

decimal.js-light is the light version of decimal.js, providing an arbitrary-precision Decimal type for JavaScript. It’s useful when you want big number support with a smaller footprint, with an API that is mostly a subset of decimal.js.

Status:

The repository appears quiet and not actively maintained, with the last upstream push dated 2024-04-24, and the most recent tagged update v2.5.1 from 2020-09-30 (well over a year before today).

Last release:

221 watchers
Open

Day.js is a minimalist JavaScript date-time library for parsing, validating, manipulating, and displaying dates and times in modern browsers. It is designed as a fast 2kB alternative to Moment.js, with a largely Moment.js-compatible, chainable API, and supports plugins and internationalization (I18n).

Status:

Actively maintained: The repo shows recent activity (last upstream push on 2026-08-18), and multiple consecutive updates in August 2026 (v1.11.21 in May, then v1.11.22 and v1.11.23 in mid-August), indicating ongoing maintenance rather than dormancy.

Last release:

592 updates · last 90 days1 watchers
Open

A Node.js package that formats JavaScript dates using Steven Levithan’s dateFormat() function, with options for predefined named masks or custom masks. It’s useful when you need consistent date and time string formatting, including support for UTC/GMT formatting and ISO 8601-related values like week number (W) and day-of-week number (N).

Status:

The project appears largely maintenance-only, with the most recent observed package updates dating to 2022, and no evidence of ongoing development in the 2024 to 2026 timeframe (even though an upstream push was recorded on 2023-03-31).

Last release:

291 watchers
Open

`csvtojson` is a Node.js, browser, and command-line CSV parser that converts CSV data into JSON (or column arrays/CSV rows, depending on options). It supports strict CSV parsing (RFC4180), async and streaming workflows, and configurable parsing parameters for handling large CSV files efficiently.

Status:

The source appears actively maintained in the recent period, with a latest upstream push on 2026-01-22, and recent published updates (v2.0.13 and v2.0.14) in late 2025, though multiple earlier releases show long gaps.

Last release:

291 watchers
Open

create-require is a small polyfill for Node.js module.createRequire for versions up to v12.2.0. It helps you create a require function from a filename or URL so you can load modules relative to that file.

Status:

The last substantive published updates shown are v1.0.2 (2020-06-12) and v1.1.1 (2020-11-26), with changes largely limited to TypeScript typings and a small runtime fallback behavior (v1.1.0). Release notes were missing for some versions (v1.0.2, v1.1.0), so there is less documented detail to assess upgrade impact.

Last release:

201 watchers
Open

core-util-is provides the `util.is*` functions introduced in Node v0.12. It is useful if you want the same set of Node core `util.is*` helpers in your JavaScript code.

Status:

The source does not appear actively maintained, with the most recent tagged updates at v1.0.3 on 2021-08-31, even though there was an upstream push on 2025-11-25 (no newer published updates are shown in the provided history).

Last release:

331 watchers
Open

A simple, robust cookie library for Node.js that is not bound to any specific HTTP request framework. It provides types to parse cookie strings and match them against access rules, plus a CookieJar class to store cookies across domains and retrieve cookies based on matching access information.

Status:

The source (bmeck/node-cookiejar) appears effectively dormant, with the last upstream push on 2022-12-13 and no evidence of recent updates as of 2026-08-13.

Last release:

261 watchers
Open

console-stamp is a Node.js module that patches the built-in `console` logging methods to add a configurable prefix such as timestamps and log levels. It is useful for producing consistent, patterned log output (including optional colored formatting) by passing the `console` object and a format/options configuration.

Status:

Active maintenance: The repository shows a recent upstream push on 2026-02-18, and the latest known packaged update is v4.0.0-rc.4 on 2026-02-18, which suggests the project is actively evolving rather than dormant.

Last release:

331 watchers
Open