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:

Implements the Node.js `require.resolve()` algorithm, letting you resolve a module specifier to the corresponding file path asynchronously or synchronously. It is useful when you need to determine where a module would resolve from a given `basedir`, including handling package `main` fields and `exports`-based resolution.

Status:

Actively maintained, with the latest upstream push on 2026-05-15 and a new published update on 2026-05-15 (v2.0.0-next.7), followed by earlier updates in 2026.

Last release:

604 watchers
Open

remark-rehype is a plugin for the unified (remark) Markdown ecosystem that converts a Markdown syntax tree into an HTML syntax tree, enabling use of rehype plugins after the conversion. It is useful when you want to turn Markdown into HTML and then process or format that HTML with tools from the rehype ecosystem.

Status:

Maintenance status: Appears not actively maintained, last known upstream update was 2025-04-02, and the sequence shows multi-month to multi-year gaps (not a steady stream of changes).

Last release:

342 watchers
Open

Remark is a markdown processor built around an AST (abstract syntax tree) model, with plugins that can inspect and change markdown markup. It is useful for turning markdown into other formats (including HTML), transforming or validating markdown, and for building markdown tooling like CLIs or server and client-side processing.

Status:

The upstream GitHub project shows activity (an upstream push on 2026-02-24), but the provided update history for published package updates ends at remark-cli@12.0.1 on 2024-04-30, suggesting low release frequency rather than continuous development.

Last release:

482 watchers
Open

remark-gfm is a unified (remark) plugin that adds support for GitHub Flavored Markdown features, including autolink literals, footnotes, strikethrough, tables, and tasklists, so you can parse and serialize those extensions. It is useful when you want your markdown tooling to match what users expect from GitHub-style GFM syntax.

Status:

remark-gfm appears quiet rather than actively maintained, with the last upstream push and most recent updates dated 2025-02-10 (about 16 months ago relative to 2026-06-09).

Last release:

362 watchers
Open

rehype-slug is a unified, rehype plugin that adds `id` attributes to heading elements (`<h1>` through `<h6>`) based on their text, useful for linking to specific document sections. It matches GitHub-style slugging (using github-slugger) and can be configured with an optional `prefix` for the generated `id`s.

Status:

Maintenance status: Appears not actively maintained as of 2026-06-09, with the latest upstream push in 2023-08-31 and no newer updates shown in the provided history.

Last release:

301 watchers
Open

Rehype Pretty Code is a tool for creating “beautiful code blocks” in Markdown or MDX documentation. It supports syntax highlighting and is often used with ecosystems like MDX and related workflows (for example via shiki-based highlighting).

Status:

Actively maintained: GitHub upstream was pushed on 2026-07-25, with a sequence of recent updates (0.14.5 on 2026-07-25, 0.14.4 on 2026-07-06, 0.14.3 on 2026-03-03), indicating ongoing responsiveness.

Last release:

622 updates · last 90 days1 watchers
Open

rehype is an HTML processor in the unifiedjs ecosystem, built around plugins that turn HTML into an AST (hast) so you can inspect and change the structure, then transform it back to HTML. It is useful for server or client HTML processing, CLI scripts, and other workflows where you want plugin-based HTML transformations.

Status:

Actively maintained? Evidence is mixed: the repo has a very recent upstream push (2026-06-02), but the most recent tagged package update in the provided summaries is rehype 13.0.2 (2024-09-27), with no further published updates shown after that.

Last release:

451 watchers
Open

rehype-autolink-headings is a unified (rehype) plugin that scans HTML headings (`h1` through `h6`) for existing `id` properties and injects a link inside each heading that points back to itself. It’s useful for long documents where you want readers to easily share or navigate to specific sections, with configurable placement and link content.

Status:

The latest recorded upstream activity is an update on 2024-09-16 (v7.1.1), with no evidence of further updates since then (as of 2026-06-09, this is about 21 months), so the project appears quiet or in maintenance mode rather than actively maintained.

Last release:

341 watchers
Open

ES6 spec compliant shim for RegExp.prototype.flags, providing a flags() function to get the flag string from regular expressions. Useful for working in ES5 environments where RegExp.prototype.flags is unavailable, by calling the package’s shim method.

Status:

Maintenance status: The source appears to be in light maintenance. The last tagged updates we can see are v1.5.4 on 2025-01-03, and there is an upstream push on 2025-12-10, but there is no evidence of frequent tagged updates after v1.5.4.

Last release:

364 watchers
Open

Provides tiny JavaScript regex syntax helpers, useful when you want to process regex text without building a full regex parser or AST. Includes utilities to find, replace, and iterate over unescaped matches within specified regex contexts, plus helpers like extracting group contents.

Status:

Maintenance status: The repository shows at least one upstream push on 2026-02-27, but the provided update summaries only reach the latest tagged update v2.3.0 on 2024-08-31 (about 1.5 years ago), so it currently appears quiet or in maintenance mode, with possibly some ongoing development that is not reflected in these summaries.

Last release:

301 watchers
Open

Adds recursive matching support to JavaScript regular expressions by generating native `RegExp` patterns, with recursion limited to a specified maximum depth (N, 2 to 100). Useful for expressing patterns like balanced parentheses, palindromes, or equal counts where recursion helps model nested or self-referential structure.

Status:

Maintenance status: The repository shows recent upstream activity (last upstream push on 2026-05-12), but the last published updates in the provided history are tagged only up to v6.0.2 (2025-02-01), so maintenance looks intermittent rather than continuously release-driven.

Last release:

301 watchers
Open

A JavaScript ES2015 mostly-spec-compliant shim or polyfill that provides `Reflect.getPrototypeOf` behavior across many engines, including older environments that support `__proto__` or ES6. Useful for getting an object's prototype consistently when `Reflect.getPrototypeOf` is missing or unreliable.

Status:

The repository appears to be quiet rather than actively maintained, with the most recent upstream push on 2025-01-02 and no further provided updates since then (as of 2026-06-09, this is over 17 months).

Last release:

344 watchers
Open

recma is a JS processor, part of the @unifiedjs ecosystem, that transforms JavaScript using plugins. Plugins inspect and change JavaScript as structured data (ASTs), and you can use it on the server, client, or in CLIs. It includes packages for parsing to AST, stringifying back to JS, and related transforms like JSX support and minification.

Status:

Maintenance status: The repo shows activity as recently as 2025-07-28 (recma-jsx 1.0.1), but relative to today (2026-06-09) there has been a long gap since the last evidenced update, so it appears quiet/dormant or at least low-velocity rather than actively maintained.

Last release:

201 watchers
Open

readdirp is a Node.js utility that recursively reads a directory, similar to fs.readdir, but exposes a stream API and a promise API. It’s useful for efficiently iterating over files and subdirectories with a small RAM and CPU footprint, with options for filtering, recursion depth, and optional stat collection.

Status:

Actively maintained: The repository shows upstream activity and a recent sequence of package updates in August 2026 (last upstream push on 2026-08-06, with 5.1.1 and 5.1.0 the same day), indicating ongoing maintenance rather than dormancy.

Last release:

412 updates · last 90 days4 watchers
Open

read-cache is a small Node.js utility that reads a file and caches its entire contents until the file is modified. It provides async and synchronous functions to get the contents, a method to fetch cached content or null, and a way to clear the cache.

Status:

The repository appears actively maintained, with recent commits/updates in August 2026, the latest being on 2026-08-19 (about 8 days before today).

Last release:

532 updates · last 90 days2 watchers
Open

React component that safely renders Markdown strings into React elements. Useful for displaying CommonMark and GFM content in React, with support for pluggable transformations and custom React components for specific HTML-like tags.

Status:

Maintenance status: Evidence from the newest upstream push (2025-04-21) and the most recent tagged update notes (10.1.0 in 2025-03) suggests the project is quiet or in maintenance mode as of 2026-06-09.

Last release:

472 watchers
Open

react-hot-toast provides lightweight, customizable toast notifications for React, with features like a promise API for automatic loaders and accessible notifications. It uses headless hooks so developers can create their own toast UI (for example with useToaster), and a Toaster component to render notifications emitted via toast() in the app.

Status:

Maintenance status: The repo appears not actively maintained as of today (2026-06-09), with the most recent upstream push and package updates in mid-August 2025, roughly 10 months ago.

Last release:

341 watchers
Open

React Hook Form is a React Hooks library for managing form state and validation in web and React Native apps. It focuses on performance and developer experience, and includes built-in integration for schema validators such as Yup, Zod, AJV, Superstruct, and Joi.

Status:

Actively maintained: The repository has an upstream push today (2026-09-03), and recent history shows continuous work with frequent version updates (not a long quiet gap).

Last release:

6310 updates · last 90 days1 watchers
Open