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:

Got is a human-friendly, powerful HTTP request library for Node.js, useful for making HTTP and HTTPS requests with features like promise, streams, pagination, and retries. It also supports JSON handling (including a `.json()` helper) and includes documentation for configuration such as timeouts, HTTPS options, caching, proxies, and HTTP/2.

Status:

Actively maintained: The GitHub activity is current, with the latest upstream push on 2026-09-02 and multiple tagged updates in 2026, including a major v16.0.0 (2026-08-30).

Last release:

614 updates · last 90 days1 watchers
Open

Converts bash-like glob patterns (for example, `*.min.js`, `?`, `[a-z]`, and `{*.html, *.js}`) into JavaScript regular expressions, with options for extended syntax, globstar `**` behavior, and RegExp flags. Useful when you need to take user-friendly wildcard patterns and match them efficiently using `RegExp`.

Status:

Not actively maintained: The upstream description is marked as archived, and the last upstream push was 2019-07-17, with no evidence of updates since then (as of 2026-08-13, this is effectively dormant).

Last release:

221 watchers
Open

Glob functionality for Node.js, providing a JavaScript library to match files using shell-style patterns. Useful for finding file paths asynchronously or synchronously, optionally streaming results or iterating over matches, with options for ignores and other glob behaviors.

Status:

Maintenance status: The source appears active, with a recent upstream push on 2026-06-22 and multiple published updates in early 2026 (v13.0.1 to v13.0.6).

Last release:

561 watchers
Open

get-package-type determines which value of `package.json#type` applies to a given filename, reporting `commonjs` when no truthy `type` value is found. It is useful for deciding whether a config or file should be loaded with `require` or `import`, and it does not validate the `type` value itself.

Status:

Maintenance status: Not actively maintained, upstream push and the only observed update are from 2020-05-19.

Last release:

301 watchers
Open

fs-monkey provides monkey-patches for Node.js filesystem related behavior. It can rewrite the built-in `fs` module to use an “fs-like” object, or patch the `require` function so Node loads modules from a custom in-memory or provided fs-like source.

Status:

Maintenance status: Appears quiet or in maintenance mode, with no updates since v1.1.0 on 2025-07-18 (last upstream push noted on 2025-09-16), which is roughly 11 to 13 months ago relative to 2026-08-13.

Last release:

431 watchers
Open

fp-ts is a library for typed functional programming in TypeScript, providing common functional data types and abstractions such as Option, Either, IO, Task, Functor, Applicative, and Monad. It is useful for building pure functional programming patterns in TypeScript, including support for higher kinded types via TypeScript techniques.

Status:

Active maintenance: The GitHub repo shows an upstream push on 2026-04-20, but the provided update history for published updates is up to 2.16.9 on 2024-12-10, with no newer tagged updates shown in the evidence.

Last release:

451 watchers
Open

Formidable is a Node.js module for parsing multipart form data, especially file uploads, with a streaming approach designed to be fast and low-memory. It can write uploaded files to disk and supports upload handling for environments like serverless and cloud storage providers such as AWS S3, Azure, and GCP.

Status:

Active maintenance: The repo shows an upstream push on 2026-08-06, and the most recent published updates are v3.5.4 (2026-04-15), indicating ongoing maintenance rather than a dormant state.

Last release:

551 watchers
Open

Fork TS Checker Webpack Plugin is a Webpack plugin that runs the TypeScript type checker in a separate process. It is useful for speeding up TypeScript type checking during builds and for reporting clearer TypeScript errors.

Status:

This source appears to be in low-activity maintenance mode rather than actively evolving in 2026, since the last listed tagged updates are from 2025-04-03, even though the repo shows an upstream push on 2026-02-21.

Last release:

491 watchers
Open

fn.name is a small JavaScript module that extracts the name from a given function. It exposes a single `name` function that you can require in Node.js or Browserify to get values like `foo` from `function foo() {}`.

Status:

Maintenance status: The source appears quiet, with the most recent upstream push dated 2022-11-01, but the provided update history only shows detailed version notes up to v1.1.0 (2018-06-14), suggesting no regular, user-facing updates in recent years.

Last release:

181 watchers
Open

find-my-way is a fast, framework-independent HTTP router for Node.js. It matches routes using an internal radix tree (compact prefix tree) and supports route parameters, wildcards, and basic URL handling options like ignoring trailing or duplicate slashes. It is useful for building high-performance HTTP request routing with a simple API, including `on(...)` to register handlers and `lookup(...)` to dispatch requests.

Status:

Actively maintained, with the most recent upstream update on 2026-08-21 and continuous tags in 2026 (v9.4.0 through v9.9.0), indicating ongoing development rather than a dormant state.

Last release:

603 updates · last 90 days1 watchers
Open

Converts a `file:` URI into a regular file path string suitable for use with Node.js `fs` module functions. Useful when you need to turn URI-style input (for example, `file:///...`) into a path your code can read from.

Status:

Maintenance status: Appears quiet or in maintenance mode, with the last upstream push on 2022-05-24 and no version updates since 2.0.0 (2019-10-11).

Last release:

261 watchers
Open

Detects the file type (MIME type and file extension) of a file, stream, Blob, or in-memory bytes by checking binary “magic number” signatures. Useful for identifying binary-based formats and making best-effort guesses before processing, and it does not guarantee the file is valid.

Status:

Actively maintained: The upstream repository has recent updates, with the last push on 2026-08-15 (v22.0.2), and additional updates earlier in 2026.

Last release:

361 updates · last 90 days1 watchers
Open

fecha is a lightweight JavaScript library for date formatting and parsing, intended to replace moment.js style formatting and parsing. It provides `format` and `parse` functions with format tokens, plus optional i18n settings and named masks for common date patterns.

Status:

Maintenance status: The repository’s most recent upstream push shown is 2023-01-05, but the latest published updates in the provided history are 4.2.1 (2021-04-05), suggesting the project is quiet/dormant rather than actively maintained as of 2026-08-12.

Last release:

321 watchers
Open

fastify-plugin is a helper module for Fastify that wraps plugin functions to support shared plugin context (instead of using the skip-override hidden property) and can attach plugin metadata. It also lets you declare the minimum Fastify version, validate dependency graphs (by plugin and decorator dependencies), and optionally keep a plugin encapsulated.

Status:

Actively maintained: Yes, the source has very recent activity, with the last upstream push on 2026-08-06 and a new tagged update v6.0.0 on 2026-06-09.

Last release:

731 watchers
Open

Fastify is a fast, low-overhead web framework for Node.js, designed to be developer-friendly with a powerful plugin architecture. It is useful for building HTTP servers and APIs with extensibility features like hooks, plugins, and decorators, with optional schema-based validation and efficient logging.

Status:

Actively maintained: Upstream pushes are very recent (last push on 2026-08-19), and there are multiple updates in August 2026, including security-labeled ones.

Last release:

8213 updates · last 90 days1 watchers
Open

fast-xml-parser is a JavaScript library (common JS, ESM, and browser compatible) for validating XML, parsing XML into JS objects, and building XML from JS objects. It is designed to be fast without relying on C/C++ based libraries, and it can also be used via a CLI command (fxparser) for quick XML processing.

Status:

Actively maintained, with upstream activity as recent as 2026-09-03 and multiple library updates in 2026 (v5.11.1 on 2026-08-27, v5.11.0 on 2026-08-16, v5.10.1 on 2026-07-16).

Last release:

848 updates · last 90 days1 watchers
Open

fast-xml-builder is a JavaScript utility for generating XML from a JavaScript object (typically JSON-style data). It is useful when you already have parsed or modeled data in JSON form and need configurable XML output, including options for attributes, formatting, CDATA and comments, entity processing, and order preservation.

Status:

Actively maintained: the upstream repo shows a very recent push (2026-08-19) and the project has frequent recent updates (v1.3.1 on 2026-08-14, with additional updates in July and May 2026).

Last release:

483 updates · last 90 days1 watchers
Open

A safe and fast alternative to JSON.stringify for serializing JavaScript objects, including cases with circular references. It supports the same stringify-style options (replacer, space, and options like depth/edge limits) and can produce a deterministic, stable output via a stableStringify variant.

Status:

The repository appears effectively dormant as of today (2026-08-13). The last upstream push was 2024-12-21, but the most recent published updates shown here are from 2021-09, indicating long stretches without user-facing updates.

Last release:

271 watchers
Open