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:

Express is a fast, unopinionated, minimalist web framework for Node.js, useful for building HTTP servers, single page applications, websites, hybrid apps, and public HTTP APIs. It provides robust routing, high performance focus, HTTP helpers, and view support for 14+ template engines.

Status:

Actively maintained: The repo has a recent upstream push (2026-06-02) and there are recent updates on the 4.x line (v4.22.2 dated 2026-05-11), indicating ongoing work rather than dormancy.

Last release:

881 updates · last 90 days2 watchers
Open

Execa is a Node.js library for running commands from your script, application, or library, built on top of Node’s child_process. It’s useful for executing local binaries with a programmatic, “optimized for humans” API, including advanced output handling like piping multiple subprocesses and returning detailed errors.

Status:

Actively maintained: GitHub activity is recent (upstream push on 2026-07-21), and the newest update (v10.0.0 on 2026-07-17) indicates ongoing work rather than dormancy.

Last release:

522 updates · last 90 days2 watchers
Open

A streaming, source-agnostic JavaScript parser for EventSource and Server-Sent Events (SSE) that you feed with partial or complete chunks to emit parsed messages when an event is complete. Useful as a building block for SSE/EventSource clients and polyfills across browsers, Node.js, and Deno, with callbacks for events, retries, comments, and parse errors.

Status:

The source appears actively maintained, with upstream activity as recent as 2026-06-06 and a steady stream of recent updates (v3.1.0 on 2026-05-27, then v3.0.8/v3.0.7 in mid-April 2026), indicating active development rather than dormancy.

Last release:

621 updates · last 90 days2 watchers
Open

EventSource is a WhatWG/W3C-compatible Server-Sent Events (SSE) client for Node.js, browsers, and other JavaScript runtimes. It helps your application connect to an SSE endpoint, listen for events (for example using `addEventListener`), and read `event.data`, with a minimal feature set aligned to the specification.

Status:

Actively maintained: The repo has a recent upstream push on 2026-06-03, so development appears ongoing as of today (2026-06-09), though the latest tagged version in the provided history is v4.1.0 (2025-11-19).

Last release:

442 watchers
Open

This is a Node.js module that generates HTTP ETags (RFC 7232) for use in HTTP responses. It creates strong or weak ETags from the complete entity body (supports strings, Buffers, and fs.Stats, with an option to control weak validators).

Status:

Upstream activity exists, with a recent upstream push on 2026-03-01, but the last tagged library update v1.8.1 is from 2017-09-13, so consumer-facing updates appear largely dormant rather than regularly maintained.

Last release:

572 watchers
Open

This JavaScript module provides an `escapeHtml` function that escapes special characters in strings so they can be safely interpolated into HTML. It replaces `"`, `'`, `&`, `<`, and `>` for use as HTML text content, and can also be used for quoted HTML attribute values.

Status:

The source appears quiet and not actively maintained as of today (2026-06-09), with its last listed upstream push on 2022-09-16 and its last observed package updates dating back to v1.0.3 on 2015-09-01.

Last release:

222 watchers
Open

node-error-ex makes it easy to define custom Error types in JavaScript, with support for setting a custom error name, and customizing or extending the error stack and message. It provides helpers to create formatted stack lines and to append formatted text to the error message, useful for consistent, informative error reporting.

Status:

Maintenance status: The source shows continued stewardship, with updates as recently as 2025-09-15 (about 9 months ago from 2026-06-09), but the update history is sparse, with a long gap between 2018-06-19 and 2025-09-15.

Last release:

382 watchers
Open

env-paths provides OS-specific filesystem paths for common app storage needs like data, config, cache, logs, and temp files. It generates path strings based on your project name, and you can use those paths to create the directories yourself.

Status:

Actively maintained in a limited sense, with the most recent upstream push and tag being v4.0.0 on 2026-01-24, but overall the update history is sparse since the last major version.

Last release:

392 watchers
Open

enhanced-resolve provides an async require.resolve-style API for resolving module or file requests according to Node.js resolving rules. It is highly configurable, supports sync, async, and promise APIs, and lets you create customized resolver functions with options like extensions, plugins, and filesystem behavior (including an optional cached filesystem).

Status:

Actively maintained: GitHub upstream pushes are very recent (last push 2026-07-29), and the project is seeing continuous patch-level updates through July 2026.

Last release:

5915 updates · last 90 days2 watchers
Open

Encode a URL into a percent-encoded form, leaving already-encoded sequences alone. Useful for safely encoding user-controlled URLs for cases like building HTML output or header values, without throwing errors. It percent-encodes non-URL code points as UTF-8 and avoids re-encoding characters like “%” when it is part of a valid escape sequence.

Status:

The source appears to have ongoing repository activity (upstream push on 2026-01-03), but there are no documented updates after v2.0.0 (2024-03-29), so it looks mostly quiet with occasional changes rather than consistently active maintenance.

Last release:

582 watchers
Open

empathic is a set of small Node.js utilities designed to help with common path-related tasks. It includes helpers to find files by walking up parent directories, work with package.json and node_modules packages, resolve absolute paths, and check file access permissions.

Status:

The repository appears actively maintained, with a recent update (v2.0.1 on 2026-05-07) and an upstream push on the same date.

Last release:

552 watchers
Open

Effect is a TypeScript framework for building robust, production-ready applications using a functional effect system with a standard library. It provides primitives for side effects, type-safe concurrency and error-handling, and includes ecosystem packages for CLI tooling, observability (OpenTelemetry), distributed computing, workflows, and multiple SQL integrations.

Status:

Actively maintained: GitHub parser shows an upstream push today (2026-07-30), and multiple related packages have updates within the last few days (notably 2026-07-26 to 2026-07-27).

Last release:

6984 updates · last 90 days2 watchers
Open

`ee-first` is a Node.js utility that invokes a listener when the first event is emitted among a set of event emitter and event-name pairs. It listens to the specified events, calls the listener only once (including passing the first `error` if it occurs first), and supports canceling to remove listeners before invocation.

Status:

The repository appears not actively maintained, with the last known upstream push on 2019-04-27 and the most recent tagged update shown in the provided history dating back to 2015-05-25 (v1.1.1), so it is effectively dormant/maintenance-only as of 2026-06-09.

Last release:

202 watchers
Open
GitHub

ecies/js is a JavaScript and TypeScript library implementing the Elliptic Curve Integrated Encryption Scheme (ECIES) for secp256k1 and curve25519. It provides encrypt and decrypt functions plus PrivateKey and PublicKey APIs, useful for building client-side or server-side cryptographic messaging and key exchange flows across multiple platforms like browser, node, and React Native.

Status:

Actively maintained: Recent GitHub activity continues into 2026-06-01, and there are library updates as recently as 2026-04-03 (v0.5.0), indicating ongoing development rather than dormancy.

Last release:

442 watchers
Open

dotenv-expand adds variable expansion on top of dotenv, letting you expand environment variables that already exist on your machine for use in a .env file. It provides an expand function, and can also be preloaded from the command line (node -r dotenv-expand/config) to apply expansion early in an app’s startup.

Status:

The source (motdotla/dotenv-expand) appears actively maintained, with the most recent upstream push on 2026-05-21 and a tagged update v13.0.0 on 2026-04-17.

Last release:

361 updates · last 90 days2 watchers
Open

A command-line tool that loads environment variables from dotenv files (a .env in the current working directory by default) and then runs another command with those variables set. It supports custom env files, cascading loads, command-line variable overrides, variable expansion, and can help when running commands in Windows or PowerShell.

Status:

Actively maintained: Evidence of ongoing activity includes a recent upstream push on 2026-05-30, and the latest tagged update in the provided list is v11.0.0 (2025-10-28).

Last release:

352 watchers
Open

Dotenv is a zero-dependency Node.js module that loads key-value pairs from a `.env` file into `process.env`, helping keep configuration separate from application code (following the Twelve-Factor App approach). It is useful for local development and setup by reading configuration files early in your app startup, with options for preloading via Node’s `-r dotenv/config`.

Status:

Actively maintained: The repo shows continued activity, with the last upstream push on 2026-05-30 and multiple tagged updates in April 2026, indicating ongoing maintenance rather than dormancy.

Last release:

522 watchers
Open

domutils provides utility functions for working with htmlparser2’s DOM (produced by domhandler). It exports all functions as a single Node.js module and is useful if you are parsing HTML or XML with htmlparser2 and need helpers to inspect or process the resulting DOM.

Status:

Actively maintained: Yes, the repository has continued publishing versioned updates recently, with the most recent upstream push on 2026-05-22 (and package updates in March 2026).

Last release:

672 watchers
Open