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:

unist-util-position is a utility for unifiedjs that helps access positional information on unist syntax tree nodes. It provides functions like position(node), pointStart(node), and pointEnd(node), useful when you need node locations (for example when building or validating plugins that may encounter dirty position data).

Status:

Maintenance status: The repo’s last upstream push was 2023-07-07, and the most recent published updates are from 2023-07-07, suggesting the project is no longer actively updated as of today (2026-06-09).

Last release:

312 watchers
Open

unist-util-is is a small utility for checking whether a UNIST node matches a given test, such as a specific node type or a set of required properties. It’s useful for avoiding repeated node-type and structure checks when working with syntax trees.

Status:

Maintenance status: The source appears actively maintained, with an updates push on 2025-10-22 and a latest published update (6.0.1) on 2025-10-16, which is within the last year of today (2026-06-09).

Last release:

352 watchers
Open

Undici is an HTTP/1.1 client written from scratch for Node.js. It is useful for making HTTP requests, and it also provides APIs like fetch, request, streaming helpers, and connection pooling configuration.

Status:

Actively maintained: The repo shows an upstream push as of 2026-09-03, and there have been ongoing updates in late Aug and early Sep 2026, indicating current active development rather than a maintenance freeze.

Last release:

7815 updates · last 90 days3 watchers
Open

Unbox a boxed JavaScript primitive value (for example, Boolean, String, Number, BigInt, or Symbol) back into its underlying primitive. Useful when you need to extract the primitive safely across realms or if you want to avoid relying on `instanceof` or mutable properties.

Status:

The most recent evidence of upstream activity is an upstream push on 2025-12-30, but the newest published update in the provided summaries is v1.1.0 on 2024-12-16. Overall, this looks like low-frequency maintenance rather than fast iteration.

Last release:

363 watchers
Open

TypeScript is a language for application-scale JavaScript that adds optional types, and then compiles to readable, standards-based JavaScript. It is useful if you want stronger tooling for large JavaScript applications while still generating plain JavaScript output.

Status:

Actively maintained: The repo shows an upstream push on 2026-08-26, and the most recent tagged updates (v7.0.2) were on 2026-08-20, indicating the project is actively worked on (not dormant).

Last release:

791 updates · last 90 days3 watchers
Open

typed-array-length provides a JavaScript helper that returns the length of a Typed Array, or false if the value is not a Typed Array. It is designed to work across realms and engines, including cases where the length property is overridden.

Status:

Maintenance status: The source is actively maintained for now, with the most recent upstream push and update on 2026-05-28 (v1.0.8). However, v1.0.8 includes no provided release notes, and the analysis indicates the substantive change details are effectively undocumented there.

Last release:

393 watchers
Open

typed-array-byte-offset is a small JavaScript utility that returns the byte offset of a Typed Array, or false if the input is not a Typed Array. It is designed to work robustly across realms and engines, including when a Typed Array’s byteOffset property has been overridden.

Status:

The repository appears quiet and likely in maintenance mode, with the last upstream push on 2024-12-19, which is well over a year ago relative to 2026-06-09.

Last release:

313 watchers
Open

This project provides a function to get the byte length (and byte offset handling) of a Typed Array, returning false if the value is not a Typed Array. It is useful for cross-realm and engine compatibility, including environments where Typed Arrays do not expose a usable byteLength method.

Status:

The repository appears quiet rather than actively maintained, with the most recent upstream push on 2024-12-17, about 18 months ago as of 2026-06-09.

Last release:

313 watchers
Open

typed-array-buffer provides a helper to get the ArrayBuffer from a TypedArray in a robust way. It’s useful when you need consistent behavior across older Node versions and modern engines where TypedArray.prototype.buffer may be missing or altered.

Status:

The source shows some maintenance activity, with the last upstream push on 2026-01-16, but the most recent published package update appears to be v1.0.3 on 2024-12-18, with no later tagged updates evident in the provided history.

Last release:

303 watchers
Open

type-check is a JavaScript library for validating the runtime types of values using a Haskell-like type syntax. It is useful for checking external input, testing, and adding extra safety to internal code, with helper functions to check types directly or reuse parsed type definitions.

Status:

Maintenance status: The last upstream push was on 2023-07-18, and the most recent listed version update is 0.4.0 from 2020-04-03, so the source appears quiet/dormant rather than actively maintained as of 2026-06-09.

Last release:

243 watchers
Open

tsconfig-paths loads Node modules based on the `paths` mappings in your `tsconfig.json` or `jsconfig.json`, translating module load requests into physical file paths that Node can resolve. It supports use at run-time (for example with `node -r tsconfig-paths/register` or `ts-node -r tsconfig-paths/register`) and via its API.

Status:

The source appears to be in active development on GitHub (last upstream push was 2026-02-23), but the publicly documented library version updates shown here are from 2023-12-14 (v3.15.0) and earlier, so published updates are currently quiet relative to today (2026-06-09).

Last release:

403 watchers
Open

A runtime library that validates data against TypeScript interfaces, producing informative error messages when values do not match. It is useful for checking parsed JSON or YAML objects (for example, data received over the network) using generated runtime checker code.

Status:

Maintenance status: Evidence suggests low ongoing maintenance, with the last recorded upstream push on 2024-04-20, and the most recent published updates shown only up to 2021-10-11. As of 2026-06-09, this looks quiet or in maintenance mode rather than actively evolving.

Last release:

242 watchers
Open

TypeScript API Utils (ts-api-utils) provides utility functions for working with the TypeScript API, including helpers for tasks like iterating tokens. It is useful for developers building tools that need to work with TypeScript types and abstract syntax tree structures. It supports TypeScript 5.5.2 and above, and Node 20.19.0 and above.

Status:

Actively maintained: GitHub shows a recent upstream push on 2026-07-16, and the project has a history of shipping versioned updates that include both runtime/API changes and toolchain changes.

Last release:

553 watchers
Open

trim-lines is a small utility that removes initial and final spaces and tabs around line endings in a string, while keeping the line endings themselves. It is useful when you want “markdown-like” whitespace trimming around line breaks without trimming whitespace at the start or end of the entire string.

Status:

Actively maintained: No, maintenance appears inactive. The upstream push was in 2022-11-23, and the most recent recorded update here is 3.0.1 from 2022-07-03, which is long before today (2026-06-09).

Last release:

242 watchers
Open

This library generates a regex-compatible string for matching a numeric range, based on two input numbers (min and max). It’s useful when you need to build validation regular expressions for numbers, ranges, years, or similar values, and it includes options for capture wrapping, shorthand digit matching, and relaxing or enforcing zero padding.

Status:

Maintenance status: The repo shows the last upstream push on 2024-08-01, but the most recent packaged version update in the provided history is 5.0.1 (2019-04-07), suggesting the source is largely quiet, not actively maintained, as of 2026-06-09.

Last release:

303 watchers
Open

tinyglobby is a fast and minimal globbing library for JavaScript/Node.js that aims to behave the same as globby and fast-glob. It is useful for matching files with glob patterns, including support for include and ignore patterns, while keeping dependencies small.

Status:

Actively maintained, there is an upstream push on 2026-08-30, and recent package updates include 0.2.17 on 2026-05-30 and 0.2.16 on 2026-04-07, suggesting ongoing development rather than a stop.

Last release:

693 watchers
Open

thenify-all is a Node.js utility that “promisifies” selected functions from an object, producing methods that return Promises. It can also generate Promise-based methods while remaining backward compatible with callbacks (thenifyAll.withCallback), which is useful when wrapping async APIs.

Status:

Not actively maintained (quiet/dormant): The last upstream push is 2020-12-10, and the most recent documented updates are from 2015, so there has been no evidence of continued work for several years as of 2026-06-09.

Last release:

232 watchers
Open

thenify turns callback-based functions into promise-based functions. It supports preserving multiple callback arguments as an array or object (via options), can optionally allow both callback and promise styles, and converts thrown async errors into promise rejections.

Status:

Maintenance status: The upstream GitHub activity is very old (last upstream push in 2020-10-25), and the most recent listed updates are from 2020-06-17 (3.3.1). As of 2026-06-09, this appears quiet or in maintenance mode rather than actively maintained.

Last release:

272 watchers
Open