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:

PGlite is an embeddable, WASM-based build of Postgres packaged as a TypeScript client library, letting you run Postgres in the browser, Node.js, Bun, and Deno without installing other dependencies. It supports reactive, realtime use and can run as an in-memory database or with persistence to indexedDB (browser) or the filesystem (Node/Bun/Deno).

Status:

Actively maintained: Multiple related @electric-sql/* packages show recent updates clustered in early July 2026, and the upstream repo had a push on 2026-07-07, indicating ongoing development rather than a dormant state.

Last release:

6943 updates · last 90 days1 watchers
Open

@ecies/ciphers is a Node and pure JavaScript adapter for symmetric ciphers, providing a consistent API for common algorithms like AES-GCM and ChaCha20-Poly1305. It uses native node:crypto (when available) for efficiency, otherwise it falls back to @noble/ciphers for browser and other environments, making it useful for cross-platform encryption in JavaScript.

Status:

The source appears actively maintained, with the latest upstream push and tag (v0.2.6) on 2026-03-31, and no evidence of a long post-release gap relative to today (2026-06-11).

Last release:

301 watchers
Open

dotenvx/dotenvx is a cross-platform, secure dotenv tool from the creator of dotenv, designed to load environment variables for many languages and platforms, including encrypted env files (end-to-end encryption is mentioned). It provides a CLI with `config()`/`require('@dotenvx/dotenvx').config()`-style usage, and includes a `dotenvx run` workflow plus install options such as npm, curl script, Homebrew, Docker, and Windows winget.

Status:

Actively maintained, with very recent activity (upstream push on 2026-07-09) and frequent ongoing updates through 2026-07-08.

Last release:

6941 updates · last 90 days1 watchers
Open

Chevrotain is a parser building toolkit for JavaScript, with built-in support for LL(K) grammars and support for LL(*) via a third-party plugin. It’s useful for building parsers, compilers, and interpreters, from simple configuration files to full programming languages, and it writes grammars as pure JavaScript sources (no code generation phase).

Status:

Actively maintained, with recent GitHub activity (last upstream push 2026-05-09) and multiple version updates in early 2026 (v12.0.0 on 2026-03-13, v11.2.0 on 2026-03-03, v11.1.2 on 2026-02-27).

Last release:

401 watchers
Open

Base UI is an unstyled React UI component library for building accessible user interfaces and design systems. It provides building blocks you can style yourself, and it is useful for teams that want accessibility-focused components and design system consistency.

Status:

Actively maintained: Evidence shows a recent upstream push on 2026-06-24, and Base UI has shipped multiple updates in 2026 (v1.6.0 on 2026-06-18, v1.5.0 on 2026-05-19, v1.4.1 on 2026-04-20, v1.4.0 on 2026-04-13).

Last release:

773 updates · last 90 days1 watchers
Open

node-exports-info provides information about which Node.js versions support the `exports` field, including version ranges and categories for features like conditions, patterns, and pattern trailers. It is useful for tooling that needs to decide how `exports` should be interpreted for a given Node version, and includes helper functions to map semver ranges to supported categories and flags.

Status:

Actively maintained, with very recent updates (last recorded upstream push 2026-06-23) and multiple new versions within days (v2.0.0 on 2026-06-23, v1.6.2 and v1.6.1 on 2026-06-22).

Last release:

463 updates · last 90 days2 watchers
Open

fdir is a fast directory crawler and globbing utility for NodeJS, designed to scan very large directories quickly and return matching file paths. It provides a builder-pattern API for crawling directories and supports synchronous or promise-based results, using Node’s fs and path modules (with optional manual installation of picomatch for globbing).

Status:

The thecodrr/fdir GitHub source shows evidence of recent but not current activity. The last upstream push was 2025-08-16, and the most recent listed update is v6.5.0 on 2025-08-14, which is about 10 months ago as of 2026-06-09, so it appears quiet or in maintenance mode rather than actively maintained today.

Last release:

372 watchers
Open

zwitch is a small JavaScript package that lets you “switch” on a field value from objects, dispatching to a handler function based on a specified key. It is useful for mapping one AST to another, handling known keys, and providing special handlers for invalid or unknown values.

Status:

Active maintenance: No, the repository appears quiet. The most recent upstream push and the newest published updates are from 2022-11-16, and there have been no further updates since then (as of 2026-06-09).

Last release:

262 watchers
Open

Zustand is a small, fast, scalable state-management solution for React, built around hooks. It lets you create a store hook and bind components to selected state so components re-render on state changes, without needing context providers or much boilerplate. It also provides utilities for non-reactive access and subscriptions for reacting to state updates outside components.

Status:

Zustand (pmndrs/zustand) appears actively maintained, with recent v5.x update activity in 2025-07 through 2026-05, and the upstream last push on 2026-06-03 (after the latest shown v5.0.14).

Last release:

732 updates · last 90 days1 watchers
Open

yocto-queue is a small JavaScript queue data structure for npm. It’s useful when you need FIFO enqueue and dequeue operations without the performance cost of using Array#shift on large arrays, offering constant-time dequeue behavior. It provides an API like enqueue, dequeue, peek, drain, clear, and exposes the queue as an iterable.

Status:

The source is likely not actively maintained as of today, with the last recorded upstream push and latest update on 2025-11-11, about 7 months ago, after a prior update gap of about 8 months.

Last release:

382 watchers
Open

yallist (“Yet Another Linked List”) is a JavaScript doubly-linked list implementation that provides Array-like methods, including forward and reverse iteration (forEach, map, reduce) and operations like push, pop, shift, unshift, and splice. It is useful when an array would be too big, or when you need to iterate in reverse order.

Status:

Maintenance status: Not actively maintained as of today (2026-06-09). The most recent upstream push was 2024-06-19, and the newest published updates in the provided list are v5.0.0 on 2024-04-09 (over 2 years ago), suggesting a quiet or maintenance-mode period.

Last release:

332 watchers
Open

word-wrap is a small CLI and text utility for wrapping words to a specified line width. It can also indent wrapped lines, customize the newline string, escape each line, trim trailing whitespace, and optionally cut long words to fit.

Status:

This GitHub source (jonschlinkert/word-wrap) does not appear actively maintained as of 2026-06-09, with the last upstream push on 2024-04-22 and the most recent published updates listed in the provided data from 2023-07-22.

Last release:

302 watchers
Open

which-typed-array is a small JavaScript utility that identifies what kind of Typed Array a given value is (for example, Int8Array, Float32Array, or BigInt64Array). It works across realms without using instanceof, and it still detects Typed Arrays even when Symbol.toStringTag is involved.

Status:

Actively maintained: The most recent upstream push and package updates are in June 2026 (v1.1.22 on 2026-06-05, followed by v1.1.21 on 2026-05-26), with diffs dominated by TypeScript and small internal refactors.

Last release:

462 updates · last 90 days2 watchers
Open

which-collection exports a function that tells you which built-in JavaScript collection type (Map, Set, WeakMap, WeakSet) a given value is. It works across realms without using `instanceof`, and it can detect the type even when Symbol.toStringTag is set. Useful for runtime type checks of collection objects.

Status:

The repository appears to have recent activity (last upstream push on 2026-03-19), but the publicly available package updates are sparse, with the latest published update being v1.0.2 on 2024-03-08.

Last release:

362 watchers
Open

which-builtin-type determines the type of a built-in JavaScript value, working across realms without relying on instanceof and without being misled by a constructor property. It is useful when you need a reliable way to classify values like arrays, typed arrays, dates, regexes, numbers, and functions.

Status:

The source shows some ongoing activity on GitHub (last upstream push 2026-03-16), but the most recent tagged which-builtin-type updates in the provided history were published on 2024-12-13 (v1.2.1), suggesting relatively infrequent packaged updates rather than rapid release cycles.

Last release:

362 watchers
Open

which-boxed-primitive detects whether a given JavaScript value is a boxed primitive and returns the corresponding built-in constructor name (like Boolean, Number, or String), or null for unboxed primitives. It is designed to work across realms and iframes without relying on instanceof or mutable properties, which makes it useful for type checks in mixed execution contexts.

Status:

Appears quiet or in maintenance mode, since the last upstream push was 2026-03-19, but the most recent published package updates you provided are from 2024-12 (v1.1.1).

Last release:

362 watchers
Open

A Node.js implementation of the Unix `which` utility, used to find the first matching executable name in the `PATH` environment variable. It includes async and sync APIs, can optionally return null instead of rejecting/throwing when not found, and lets you override `PATH` and `PATHEXT` (or return all matches).

Status:

The repo appears actively maintained, with a recent upstream push on 2026-05-22 and the latest published updates being v7.0.0 on 2026-05-08 (plus a prior v6.0.1 update on 2026-02-10).

Last release:

631 updates · last 90 days2 watchers
Open

web-vitals is a small JavaScript library for measuring Web Vitals metrics on real users, using the same method Chrome and other Google performance tools report. It helps developers monitor Core Web Vitals like CLS, INP, and LCP, and can optionally include attribution data for diagnosing and prioritizing performance issues.

Status:

Actively maintained, with an upstream push on 2026-06-10 and recent published updates as late as 2026-05-28, indicating ongoing development.

Last release:

611 updates · last 90 days1 watchers
Open