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.
Checks whether stdout or stderr is interactive by determining if the stream is a TTY (not a “dumb” terminal) and not running in a CI. Useful for deciding whether to show interactive terminal UI elements or animations in Node.js applications.
The source is likely in maintenance mode rather than actively evolving, with no published updates since v2.0.0 in 2021-05-03, and the latest observed upstream push on 2023-11-06.
Last release:
A small JavaScript/Node.js utility that checks whether the current process is running inside a container, specifically Docker or Podman. It can be used as a function in code, or via a CLI, exiting with code 0 when inside a container and 2 when not.
This GitHub source (sindresorhus/is-inside-container) appears quiet/dormant today, with the last upstream push on 2023-10-27 and no evidence of ongoing updates since 2023.
Last release:
Checks whether the current Node.js process is running inside an SSH session by looking for standard SSH environment variables. Useful for adjusting behavior when operations like opening files, browsers, or system-specific commands may differ under SSH.
The GitHub upstream appears to be actively maintained, with the last upstream push on 2026-02-13 (about 4 months before 2026-06-09), though the evidence provided does not show additional tagged updates after that push.
Last release:
This package provides a function to check whether a given Unicode code point represents a fullwidth character. It is useful for text formatting, alignment, or validation when you need to distinguish fullwidth from non-fullwidth characters.
The source appears actively maintained, with a recent update on 2025-08-31, and the next most recent major update in 2023-10-28, indicating ongoing maintenance rather than a one-off change.
Last release:
Checks whether the current process is running inside a Docker container. Useful for applications that need to detect their runtime environment, with both a Node.js API (import is-docker) and a CLI that exits with code 0 in Docker and 2 otherwise.
Maintenance status: The source appears actively maintained in the short term, with a recent upstream push and published updates in 2025 (last known push: 2025-09-15).
Last release:
node-is-arrayish is a small JavaScript utility that determines whether a value can be used like an Array. It’s useful for input validation and branching logic when you need to treat “array-like” objects differently from real arrays.
The repo appears to be mostly quiet, with the latest upstream activity on 2025-09-13, about 9 months ago relative to 2026-06-09, suggesting maintenance rather than active, continuous development.
Last release:
ipaddr.js is a JavaScript library for manipulating IPv4 and IPv6 addresses. It helps you parse and validate addresses, check them against CIDR ranges, classify them into named ranges like loopback and private, convert between IPv4 and IPv6 forms, and work with raw byte arrays.
Actively maintained: The upstream repo shows a recent push on 2026-05-08, and the npm version v2.4.0 was published in 2026-05. As of 2026-06-11, this indicates ongoing maintenance rather than dormancy.
Last release:
ip-address is a JavaScript and TypeScript library for validating and manipulating IPv4 and IPv6 addresses, including CIDR subnets. It provides parsing, subnet membership and range checks, and conversions between common address forms (such as canonical/correct form, byte arrays, and BigInt), and it can run in both Node.js and the browser.
Actively maintained, with recent activity as of 2026-08-29 (latest upstream push 2026-08-29, today is 2026-09-03), including multiple updates within the same week.
Last release:
A small JavaScript helper that provides Node.js compatible `inherits` behavior for setting up prototype-based inheritance. It works in both Node and the browser, with a browser-friendly implementation to avoid bundling the full `util` package when only `inherits` is needed.
Maintenance status: The upstream GitHub repo had a push on 2025-10-25, but the latest published package update in the provided history is v2.0.4 from 2019-06-19, suggesting infrequent maintenance for the distributed package.
Last release:
next-intl provides internationalization (i18n) tools for Next.js, including ICU message syntax for translations and formatting for dates, times, and numbers. It also offers a hooks-based API for turning translation messages into plain strings or rich text, with type-safe message key support. It is useful for building language-aware React apps, including internationalized routing.
Active maintenance is evident, with upstream activity on 2026-09-01 and multiple recent update tags (v4.14.2, v4.14.1, v4.14.0) within days.
Last release:
iconv-lite converts character encodings using pure JavaScript, turning encoded buffers into JavaScript strings and vice versa. It also provides a streaming API for chunk-by-chunk encode and decode, and supports many common singlebyte and multibyte encodings without native code compilation.
Actively maintained: Recent updates in 2026 (including v1.0.0-alpha.2 and v0.7.3 on 2026-07-03, plus an upstream push on 2026-08-01) indicate ongoing development rather than maintenance mode.
Last release:
A Node.js package that provides a human-friendly map of known process signals, including readable descriptions, default actions, whether they are supported on the current OS, and whether the default action can be prevented. It’s useful for writing clearer signal and error-handling logic around interrupts and process exit behavior.
Maintenance status: The most recent documented updates are v8.0.1 on 2025-03-29, with an upstream push on 2025-05-25. As of 2026-06-09, there is no evidence of further updates, so the project appears quiet (maintenance mode) rather than actively iterating.
Last release:
Provides TypeScript/JavaScript constants for HTTP status codes and their reason phrases, suitable for use in apps and frameworks like Express. Useful for mapping status codes to standard text (for example, sending `StatusCodes.INTERNAL_SERVER_ERROR` with `getReasonPhrase`) and keeping status code usage consistent with relevant RFCs.
Maintenance status: Repository updates last show v2.3.0 on 2023-09-20, and the last upstream push was 2024-07-23, so as of 2026-06-09 the source appears quiet/dormant rather than actively maintained.
Last release:
This is a Node.js module for creating HTTP error objects for Express, Koa, Connect, and similar frameworks. It provides a `createError` API and helpers to attach status codes, messages, headers, and other properties, so you can pass standardized errors through your middleware.
Active maintenance: Yes. The upstream GitHub repo shows a recent push on 2026-06-01, and the most recent published package update (v2.0.1 on 2025-11-20) includes CI/workflow and test-related improvements.
Last release:
htmlparser2 is a fast, forgiving HTML and XML parser for JavaScript, designed to parse documents with a callback-based interface. It’s useful for streaming-style parsing where you react to events like opening tags, attributes, text, closing tags, and comments without needing to build a full DOM up front.
Actively maintained: Recent upstream push was on 2026-06-09, with the latest tagged update v12.0.0 on 2026-03-20, indicating ongoing development rather than dormancy.
Last release:
Advanced converter that turns HTML into plain text, useful for formatting and extracting readable text from HTML content such as emails. Includes a CLI tool for running the conversion from the command line, and a monorepo with related packages.
Actively maintained: The upstream GitHub repo was pushed on 2026-08-19, and an update (10.0.1) was published the same day, indicating current responsiveness rather than dormancy.
Last release:
Hono is a small, fast web framework built on Web Standards, designed to run on many JavaScript runtimes including Cloudflare Workers, Deno, Bun, Vercel, and Node.js. It provides routing and middleware features, with built-in support for first-class TypeScript development. Useful if you want to write the same web app code across different platforms.
Actively maintained, with upstream GitHub activity as recent as 2026-08-27 and a steady stream of frequent updates (v4.13.1 on 2026-08-07, v4.13.2 on 2026-08-13, v4.13.3 on 2026-08-18, v4.13.4 on 2026-08-24, v4.13.5 on 2026-08-26).
Last release:
Hermes is a JavaScript engine optimized for running React Native apps, focusing on fast startup using ahead-of-time static optimization and compact bytecode. It’s useful if you want to enable Hermes in a React Native project or build and integrate a custom Hermes build, with release notes aimed at specific React Native versions.
Active maintenance: The repo shows recent activity (last upstream push on 2026-06-06) and multiple updates in 2026, including hermes-v250829098.0.14 (2026-06-02) and hermes-v250829098.0.13 (2026-05-05), indicating ongoing development rather than maintenance mode.
Last release: