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.
Web Streams Polyfill provides JavaScript implementations of the Web Streams APIs based on the WHATWG spec reference implementation. It can be used as a ponyfill (adds stream classes without replacing globals) or as a polyfill (replaces native stream globals) to enable Web Streams in ES5/ES2015+ environments, including via Node modules or script tags.
Actively maintained, with a very recent upstream push on 2026-06-11 and the latest published updates being v4.3.0 (2026-05-15).
Last release:
“vary” is a Node.js module that helps manage the HTTP Vary response header. It provides functions to add one or more fields to res.Vary, appending them if needed, useful for applications that vary responses based on request headers like User-Agent.
Maintenance status: The project appears in a quiet, maintenance mode as far as published updates go, with the latest tagged update shown being v1.1.2 (2017-09-24). However, the upstream push date is 2026-04-02, indicating some recent activity even though no newer tagged updates are listed here.
Last release:
validate-npm-package-name is an npm CLI-related tool that checks whether a given string is an acceptable npm package name. It exports a synchronous function that returns whether the name is valid for new packages and for old packages, and it provides errors or warnings when the name does not meet the rules.
Actively maintained: recent updates landed in 2025 and again in 2026, with the newest update v8.0.0 dated 2026-05-08 and an upstream push on 2026-05-22 (close to today, 2026-06-11).
Last release:
Valibot is a modular, type-safe TypeScript library for validating and transforming structured data at runtime using schemas. It is useful for checking incoming data (for example server requests, form inputs, or configuration files) with small bundles and a no-dependencies approach, providing APIs like parse, safeParse, and type guards.
Actively maintained, with recent activity on GitHub (last upstream push on 2026-06-28) and multiple package updates published in 2026 (March, May, June).
Last release:
unpipe is a Node.js module for removing (unpiping) all destinations from a given stream. It provides an alternative to `stream.unpipe()`, and includes support for undoing `stream.pipe(dest)` for older Node.js 0.8 style streams.
The source stream-utils/unpipe appears largely inactive, with the last upstream push on 2020-12-15, and the only listed published update being v1.0.0 from 2015-06-14, so it is not showing signs of active maintenance as of 2026-06-09.
Last release:
universalify is a Node.js utility that converts functions that use callbacks or promises so they can be used with either style. It provides helpers like `fromCallback` and `fromPromise` to adapt a function’s last callback `(error, result)` or returned Promise into a universal function.
Maintenance status: The repository appears quiet/dormant. The most recent update is v2.0.1 on 2023-11-01, with no newer updates since then, which is a long gap relative to today (2026-06-09).
Last release:
unicorn-magic is a JavaScript utility package that provides small helpers, such as a delay function for pausing execution for a given number of seconds. It also offers Node.js-specific utilities via a /node sub-export, which can help with bundler compatibility.
The source appears to be maintained but at a slow pace, with the most recent recorded update on 2025-11-15, and earlier updates in 2024 and 2023.
Last release:
type-is is a Node.js module that infers or checks the content-type of an HTTP request. It provides helpers to detect the request content-type against a list of media types, handle wildcards and suffixes, and determine whether a request has a body even when the Content-Type header is missing or invalid.
Actively maintained: The repository has recent updates (v2.1.0 on 2026-05-13) and an upstream push on 2026-05-13, indicating ongoing maintenance rather than dormancy.
Last release:
type-fest is a collection of essential TypeScript types you can add as a dependency or copy and paste into your project. It provides utility types like Except and deep merge or mutable/readonly helpers to help you model data more precisely in TypeScript.
Actively maintained: The repo shows very recent activity (last upstream push 2026-07-08, with a v5.8.0 update on 2026-07-04), and multiple versioned updates continue throughout 2025-12 to 2026-07.
Last release:
tw-animate-css provides a Tailwind CSS v4.0 compatible set of animation utilities, acting as a replacement for tailwindcss-animate. It includes ready-to-use enter and exit animations and parameterized utility classes so you can control duration, easing, delay, repeat behavior, and more.
The source appears to be maintained in the near term, with an upstream GitHub push on 2026-02-28, but the most recently listed published update is v1.4.0 from 2025-09-24, so publicly visible updates have a long gap relative to today (2026-06-09).
Last release:
tough-cookie is a Node.js implementation of RFC6265 for parsing, storing, and retrieving HTTP cookies (including Cookie and CookieJar helpers). It is useful for cookie handling in Node-based web clients and tests, and it also includes work-in-progress support for RFC6265bis features like SameSite context handling and cookie prefix security checks.
Actively maintained: The repository has very recent updates (last upstream push on 2026-07-07, and a package update v6.0.2 dated 2026-07-07), with more changes in 2026 as well (v6.0.1 on 2026-03-12), indicating ongoing maintenance rather than dormancy.
Last release:
Converts a string of words into a JavaScript identifier. Useful in Node.js projects when you need to transform input text like “Bad Request” into a valid identifier such as “BadRequest” by capitalizing word starts and removing non-word characters.
The repository looks largely inactive, with the last upstream push on 2023-12-18 and the most recent documented update (v1.0.1) from 2021-11-14, so it is not actively maintained as of 2026-06-09.
Last release:
tldts is a JavaScript library for extracting hostnames, domains, subdomains, and public suffixes from URLs and hostnames. It also supports parsing email addresses and detecting IPv4 and IPv6, and includes TypeScript type definitions.
Actively maintained, evidence-backed: Recent GitHub updates span July 2026 and include repeated bundle refreshes plus dependency bumps, indicating ongoing maintenance rather than a dormant state. The latest update is 2026-07-07, and upstream pushed 2026-07-08.
Last release:
tinyexec is a minimal Node.js package for executing commands using a higher level interface over child_process. It lets you spawn a process, await its result (stdout, stderr, exitCode), and optionally pipe between commands, handle timeouts or abort signals, and support async or synchronous execution.
Actively maintained: Yes, the repo appears to be active, with an upstream push on 2026-06-09 and the most recent listed package update (1.2.4 on 2026-05-31).
Last release:
tiny-invariant provides a tiny, zero-dependency invariant function that throws when a provided condition is falsy, useful for runtime assertions. It supports optional string messages (or message factory functions) and can help with type narrowing in Flow and TypeScript, while dropping message details in production (generic “Invariant failed”).
Maintenance status: Quiet and not actively maintained, with the last upstream push on 2024-07-25 and the most recent listed updates in 2024-02.
Last release:
Tapable is a small JavaScript module that provides many Hook classes for building plugin systems, letting you define sync and async hooks (including bail, waterfall, and loop behaviors). Developers can register plugin callbacks on named hooks and then trigger those hooks, with Tapable managing argument passing and optimized execution order based on the registered taps.
Active maintenance: Evidence from the upstream push on 2026-06-05 and tagged updates through 2026-04-21 (v2.3.3) indicates webpack/tapable is actively maintained, not dormant.
Last release:
Provides a unique tag for use with the `Tagged` type in type-fest. It helps prevent duplicate tag symbols when multiple type-fest versions exist in a dependency tree, avoiding ambiguity when using the `Tagged` type.
Active maintenance: The repository shows an upstream push on 2026-02-13, indicating ongoing activity as of 2026, though the provided update summaries only cover versions up to v1.0.0.
Last release:
tabbable is a small JavaScript utility that finds all tabbable DOM nodes (elements in the tab order) within a given containing node. It also provides helpers like isTabbable, focusable, isFocusable, and getTabIndex, which are useful for building and testing accessible keyboard focus behavior.
Actively maintained, with very recent upstream activity (last push on 2026-06-24) and a corresponding update released shortly before (v6.5.0 on 2026-06-20).
Last release: