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.
Set a function’s name property in JavaScript by calling the exported helper with a function (fn), the desired name (name), and an optional loose flag to avoid throwing on failure. It returns the original function, useful when you need stable or clearer function names for debugging or introspection.
The repository shows evidence of ongoing activity, with an upstream push on 2025-12-30. However, the provided published updates history stops at v2.0.2 on 2024-02-20, so there has been a long gap since the last documented update in this data.
Last release:
set-function-length lets you set a JavaScript function’s `length` property, taking a function, a new integer length (0 to 2**32), and an optional `loose` flag. It returns the same function after attempting the update, useful in code that needs to adjust reported arity.
The repository appears mostly in maintenance mode today, with the most recent tagged published update shown in the provided summaries from 2024-03-09 (v1.2.2), even though there was an upstream push on 2025-12-30. This suggests low outward-facing activity rather than active, frequent maintenance.
Last release:
section-matter is a Node-based utility for parsing “matter” sections in a single document, similar to front-matter but allowing multiple sections. It returns the remaining content plus an array of section objects (key, data, content), and supports custom delimiters and a per-section callback to transform parsed section data (for example, parsing YAML).
The source does not appear to be actively maintained, with the last upstream push on 2017-10-23, which is far in the past relative to today (2026-06-09).
Last release:
safe-regex-test takes a regular expression and returns a predicate function you can call with a string to test for matches. It’s designed to remain robust even if RegExp.prototype is altered later, making it useful for safer regex-based checks in JavaScript.
Maintenance status: Evidence shows ongoing repository activity (last upstream push 2026-01-05), but the last published package update I can see is v1.1.0 on 2024-12-12, so maintenance looks lightweight and intermittent rather than continuously releasing.
Last release:
safe-push-apply is a small JavaScript utility for pushing an array of items into another array. It aims to be robust against prototype modification, which can otherwise break operations like spreading or relying on built-in array methods.
The source ljharb/safe-push-apply appears to be actively maintained, with an upstream push on 2026-01-13, which is relatively recent compared to today (2026-06-09).
Last release:
safe-array-concat provides a safer alternative to Array.prototype.concat by ignoring Symbol.isConcatSpreadable so it will not spread values that normal concat would treat as spreadable. It is useful when you want consistent concatenation behavior regardless of Symbol.isConcatSpreadable being set on strings or arrays.
The repository appears actively maintained, with the most recent update being v1.1.4 on 2026-04-20, and earlier updates continuing through 2024, though release note details are often missing.
Last release:
Reusify helps you reuse objects and functions to improve performance in Node.js, aiming for about 10% faster execution in hot code paths. It provides a pattern for getting cached instances, resetting their state, and releasing them back to the cache to reduce function allocation and garbage collector pressure.
Maintenance status: Evidence suggests the repo is still maintained, with an upstream push on 2026-02-09. However, the most recent tagged update shown in the provided history is v1.1.0 (2025-02-25), so activity may be occurring outside the listed release tags.
Last release:
resolve-pkg-maps provides utilities to resolve `package.json` `exports` and `imports` maps for Node.js-style module resolution. It implements the ESM resolution algorithm and returns matched target paths, which is useful when building tools or resolvers that need to interpret conditional subpaths and imports/exports mappings.
The source appears quiet rather than actively maintained, with only one documented update (v1.0.0 on 2022-12-14) and no additional release notes shown in the provided history.
Last release:
Resolve-from helps you find the filesystem path of a module similarly to Node.js require.resolve(), but using a specified starting directory. It throws an error when the module can’t be found (or returns undefined via resolveFrom.silent). Useful when you need deterministic module path resolution relative to a particular directory.
Quiet maintenance mode, no recent evidence of active upkeep, the last upstream push was 2021-01-23, and the most recent listed update is v5.0.0 from 2019, which is multiple years ago relative to 2026-06-09.
Last release:
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.
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:
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.
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:
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.
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:
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.
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:
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.
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:
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).
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:
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.
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:
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.
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:
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.
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: