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.
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).
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:
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.
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:
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.
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:
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).
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:
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.
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:
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.
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:
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.
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:
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.
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:
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.
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:
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.
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:
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.
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:
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.
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:
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.
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:
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).
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:
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.
Actively maintained, the repo has a very recent upstream push (2026-07-27) and the latest published updates are only days apart (v6.0.1 on 2026-07-27, v6.0.0 on 2026-07-21).
Last release:
web-namespaces is a small ESM-only package that provides a map of web namespace names to their corresponding namespace URLs (for example, html, svg, xlink). It is useful when you need to access XML, HTML, SVG, and related namespace URLs in your code.
Maintenance status: Not seeing regular published updates, with the last tagged package update at v2.0.1 (2021-11-05), and only an upstream push on 2023-11-01 (suggesting some activity but no recent version cadence).
Last release:
vfile-message is a utility that creates vfile messages, using a (lint) message format with fields like line and column, ruleId, and source. It is useful when you need to emit warnings or errors even when you do not have a vfile-backed file object.
Actively maintained: Yes, there is a recent upstream push and an npm update on 2025-07-26 (version 4.0.3), but after that there have been no further updates through 2026-06-09.
Last release:
vfile-location is a small utility for vfile that converts between positional locations in a text file (line and column) and offset-based locations (range-based index positions). It is useful when you need to search raw file content or report AST findings using line and column coordinates for users.
Maintenance status: Evidence suggests the project is quiet/dormant rather than actively maintained as of 2026-06-09, with the last known upstream push on 2024-10-22 and the newest published updates (5.0.3) on 2024-07-15.
Last release: