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:

Playwright is a framework for web testing and automation that drives Chromium, Firefox, and WebKit with a single API. It’s useful for end-to-end testing (via Playwright Test), browser automation scripts (via the Playwright library), and agent-driven web control (via the Playwright CLI and Playwright MCP).

Status:

Playwright (microsoft/playwright) appears actively maintained, with GitHub activity very recently (last upstream push 2026-07-29) and frequent tagged updates through late July 2026 (v1.62.0 on 2026-07-24).

Last release:

695 updates · last 90 days3 watchers
Open

@parcel/watcher is a native C++ Node module for querying and subscribing to filesystem events, used by Parcel 2. It can watch directories recursively for realtime create, update, and delete notifications, and it can query historical changes since a saved snapshot to help invalidate caches. It includes cross-platform backends for macOS, Linux, Windows, FreeBSD, and optionally Watchman.

Status:

The source (parcel-bundler/watcher) appears actively maintained, with an upstream push on 2026-07-20 and a recent update v2.6.0 also dated 2026-07-20.

Last release:

481 updates · last 90 days2 watchers
Open

until-async provides a small utility for handling Promises with async/await without repeating try/catch blocks. It wraps a function that returns a Promise and returns a NodeJS-friendly tuple of [error, data], making it convenient to work with resolved values and exceptions.

Status:

Maintenance status: The repository shows very recent upstream activity (last push on 2026-06-08), but the most recently documented published updates are from 2025-09-20, so code may be evolving while tagged updates are not frequent.

Last release:

622 watchers
Open

@open-draft/logger is an environment-agnostic, ESM-friendly logging utility with a simple API for browser and Node.js. It prints debug, info, success, warning, and error messages (disabled by default) and can be enabled via environment variables like DEBUG or LOG_LEVEL, with optional logger name filtering.

Status:

The last upstream push and latest published update were on 2023-04-14, and there have been no subsequent updates from this source since then, so it appears quiet/dormant rather than actively maintained as of 2026-06-09.

Last release:

122 watchers
Open

@open-draft/deferred-promise provides a Promise-compatible `DeferredPromise` (and `createDeferredExecutor`) that lets you create a promise upfront and resolve or reject it later from another part of your system. It is useful when one module needs to return a promise immediately while a different module fulfills the result, similar to Node.js deferred utilities but without creating nested promise instances.

Status:

Actively maintained? Yes. The most recent upstream update was on 2026-03-24, and v3.0.0 was published immediately after that, indicating ongoing maintenance as of 2026-06-11.

Last release:

382 watchers
Open

Audited, minimal JavaScript library that implements hash functions, MACs, and KDFs, including SHA, RIPEMD, BLAKE, HMAC, HKDF, PBKDF2, scrypt, and Argon2. It is designed to be fast and tree-shakeable for small builds, with optional modules for many algorithms and a friendly wrapper over native WebCrypto. Useful for adding standard cryptographic hashing, keyed hashing, and key derivation to JS or TypeScript projects.

Status:

Actively maintained, last upstream push was 2026-06-10, and the most recent published update (2.2.0) was 2026-04-11, showing continued development close to today (2026-06-11).

Last release:

692 watchers
Open

Audited, minimal JavaScript implementation of elliptic curve cryptography, including key operations like ECDSA, EdDSA, Schnorr signatures, ECDH, and related building blocks such as hash-to-curve and OPRFs. Useful for developers who need tree-shakeable, TypeScript/JavaScript-friendly curve code with cross-library tests and fuzzing for correctness.

Status:

Active maintenance: The repo has an upstream push as recently as 2026-06-10, and the project has delivered library updates including v2.2.0 on 2026-04-12, suggesting it is actively maintained right now.

Last release:

692 watchers
Open

Audited, minimal JavaScript/TypeScript library that implements Salsa20, ChaCha, and AES ciphers, including modes like AES-GCM and Salsa20/XChaCha20-Poly1305. It is useful for encrypting and decrypting data in JS apps, with optional helpers like a “managedNonce” API and a WebCrypto-based AES wrapper.

Status:

Actively maintained: The repo shows a very recent upstream push (2026-06-10), and the project has an update tagged in 2026-04-11 (v2.2.0), indicating ongoing maintenance rather than being dormant.

Last release:

622 watchers
Open

@mswjs/interceptors is a low-level network interception library for Node.js, supporting interception and normalization of HTTP, XMLHttpRequest, fetch, and WebSocket traffic. It runs arbitrary logic on dispatched requests, converting intercepted requests to Fetch API Request instances and letting you construct Fetch API Response objects for intercepted HTTP requests. It’s useful as a lower-level component for higher-level mocking tools such as Mock Service Worker.

Status:

Actively maintained: The repository shows recent upstream activity (last push 2026-07-25) and multiple version updates in late July 2026 (v0.42.3, v0.42.2, v0.42.1, v0.42.0), indicating ongoing development rather than maintenance mode.

Last release:

535 updates · last 90 days2 watchers
Open

@mrleebo/prisma-ast is a JavaScript and TypeScript library for parsing Prisma schema.prisma files into an abstract syntax tree, then converting that structure back into schema text. It’s useful if you need to programmatically modify schemas while preserving comments and model attributes, and supports builder-style updates via produceSchema, plus options like re-sorting the printed schema.

Status:

Actively maintained, with the most recent upstream push on 2026-05-08, about a month before today (2026-06-11), and a steady flow of version updates in 2024 to 2026.

Last release:

371 updates · last 90 days2 watchers
Open

The MCP TypeScript SDK is the official TypeScript implementation for building Model Context Protocol servers and clients for Node.js, Bun, and Deno. It provides server and client libraries plus optional middleware adapters to wire MCP into runtimes like Node.js HTTP, Express, and Hono. It is useful if you want to expose or consume MCP tools, resources, and prompts from a TypeScript app.

Status:

Actively maintained, with very recent upstream activity (last upstream push on 2026-07-29) and multiple SDK updates dated 2026-07-27, indicating the project is actively evolving rather than in maintenance mode.

Last release:

6956 updates · last 90 days2 watchers
Open

Inquirer.js is a JavaScript library for building interactive command-line user interfaces, providing common prompt types like input, select, checkbox, confirm, search, password, and editor. It is useful for creating terminal experiences that collect user responses with a consistent API and supports localization via the @inquirer/i18n package.

Status:

Actively maintained: The repo shows an upstream push on 2026-06-06, and the most recent package updates are from 2026-05-31 and 2026-06-06, indicating ongoing work rather than dormancy.

Last release:

628 updates · last 90 days2 watchers
Open

@hono/node-server is a Node.js adapter that lets you run a Hono application on Node.js by using web standard Request/Response APIs. It provides a `serve` function to start the app, optional WebSocket support (via `upgradeWebSocket`), and Node.js-friendly helpers like ConnInfo and static file serving.

Status:

Actively maintained, with recent upstream activity, last push on 2026-07-27 and multiple follow-on updates in late July 2026 (v1.19.17, v2.0.12, v2.0.11, v2.0.10).

Last release:

6913 updates · last 90 days2 watchers
Open

FormatJS is a monorepo that hosts the FormatJS-related libraries, most notably react-intl. It is useful for JavaScript and web internationalization and localization work, including formatting and parsing i18n messages and related React tooling.

Status:

Actively maintained: Recent GitHub activity is strong (upstream push on 2026-07-22), and multiple package updates were published in mid-July 2026, indicating ongoing development rather than maintenance mode.

Last release:

4786 updates · last 90 days2 watchers
Open

Floating UI is a JavaScript library for positioning “floating” UI elements like tooltips, popovers, and dropdowns, keeping them anchored to a reference element while avoiding collisions and staying visible. It also provides React hooks and components to build accessible interactive floating components.

Status:

Actively maintained: The upstream repo and related packages show recent updates as of 2026-07-11, with the latest push on 2026-07-11, and multiple package updates across the Floating UI ecosystem.

Last release:

698 updates · last 90 days2 watchers
Open

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 days2 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:

302 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: GitHub shows an upstream push on 2026-07-29, and the project published several updates within the last week (v2.16.0 through v2.19.0), indicating ongoing development rather than dormancy.

Last release:

6969 updates · last 90 days2 watchers
Open