CPANscan logo

CPANscan

Recent Perl modules, releases and favorites.
Last updated 16 March 2026 12:30 PM
Perl logo

Plack-App-DirectoryIndex

Release | 16 Mar 2026 11:20 AM | Author: DAVECROSS | Version: v0.2.3
CPAN Testers: Pass 47.8%N/A 52.2%
Serve static files from document root with an index file
Plack::App::DirectoryIndex is a small PSGI/Plack application that serves static files from a document root and provides Apache-style directory listings while automatically serving a default index file such as index.html. It is configured with a root directory and an optional dir_index filename, and can render directory listings with optional Font Awesome icons and an enhanced CSS theme for a prettier appearance. Use it when you need a simple standalone static file server for development or lightweight hosting that falls back to an index file before showing a listing. If you do not want automatic index files you can use Plack::App::Directory or Plack::App::File instead.
Perl logo

MetaCPAN-API

Release | 16 Mar 2026 11:02 AM | Author: HAARG | Version: 0.52
Upvotes: 26 | CPAN Testers: Pass 100.0%
(DEPRECATED) A comprehensive, DWIM-featured API to MetaCPAN
MetaCPAN::API is a now-deprecated Perl client that wraps the MetaCPAN REST API and gave Perl programs simple, DWIM-style methods to look up authors, releases, modules and other CPAN metadata while also exposing low-level fetch and post helpers. It uses HTTP::Tiny as its user agent by default, lets you point it at a custom base_url (defaulting to https://fastapi.metacpan.org/v1) and pass ua arguments, and can be used with cached user agents for offline or faster access. This module has been superseded and rewritten as MetaCPAN::Client, so you should not start new code with MetaCPAN::API; use MetaCPAN::Client instead. For historical users, the recent 2026 update fixed tests against the current MetaCPAN API, improved error messages by including response content, and updated author tooling.
Perl logo

App-CPAN-Dependents

Release | 16 Mar 2026 03:40 AM | Author: DBOOK | Version: 1.001
CPAN Testers: Pass 96.0%N/A 4.0%
Recursively find all reverse dependencies for a distribution or module
App::CPAN::Dependents is a lightweight tool and library for finding which CPAN distributions depend on a given module or distribution. It provides the find_all_dependents function and a cpan-dependents command line wrapper that query the MetaCPAN API recursively to build a list of reverse dependencies, with options to include recommends, suggests, or develop-phase prerequisites and to supply a custom MetaCPAN::Client or HTTP::Tiny object for network control. Because it relies on live MetaCPAN queries it needs internet access and can take some time to complete, it will die on HTTP errors, and it only finds prerequisites explicitly listed in distribution metadata so dynamic or unindexed modules are not captured. A recent fix updates the MetaCPAN search filtering to work with newer Elasticsearch backends.
Perl logo

Async-Redis

Release | 16 Mar 2026 02:19 AM | Author: JJNAPIORK | Version: 0.001005
CPAN Testers: Pass 82.6%N/A 17.4%
Async Redis client using Future::IO
Async::Redis is an asynchronous Redis client for Perl built on Future::IO that gives you a modern non-blocking API with async/await support via Future::AsyncAwait. It works with multiple event loop backends, supports TLS, automatic reconnect with backoff, connection pooling, pipelining and auto-pipelining, transactions, PubSub with replay on reconnect, and efficient Lua scripting with automatic EVALSHA optimizations. The module is fork-safe and includes OpenTelemetry hooks for tracing and metrics, plus safe concurrent command handling on a single connection to avoid response-matching races. Note that Async::Redis no longer configures Future::IO itself so your application must choose and load the event loop implementation at startup. Recent updates fixed socket close ordering and concurrency issues to make disconnects and parallel command handling more robust. This module is a good fit if you need a fully asynchronous, production-ready Redis client that integrates with existing Perl event loops and high-throughput services.
Perl logo

Lilith

Release | 16 Mar 2026 12:42 AM | Author: VVELOX | Version: v1.0.0
CPAN Testers: Pass 100.0%
Work with Suricata/Sagan EVE logs and PostgreSQL
Lilith is a lightweight Perl tool for ingesting and querying EVE JSON alerts from Suricata, Sagan, and CAPE into a PostgreSQL database using DBI. It can create the required tables, import multiple EVE files by instance, and run as a long‑running processor that feeds alerts into the database while letting you ignore selected SIDs or classes. The module also exposes a convenient search API with many filters for IPs, ports, signatures, hashes and other fields, plus helper routines for producing short SNMP class names, so you can build dashboards or forensic queries without writing raw SQL. Configuration is simple and scriptable via DSN, user/password and TOML files. In the 1.0.0 release the author cleaned up the codebase, removed changeable table names and some legacy "baphomet" features, and added a Lilith_color_enable environment flag to control colored output.
Perl logo

POSIX-RT-SharedMem

Release | 15 Mar 2026 10:38 PM | Author: LEONT | Version: 0.11
Upvotes: 1 | CPAN Testers: Pass 96.7%N/A 3.3%
Create/open or unlink POSIX shared memory objects in Perl
POSIX::RT::SharedMem gives Perl programs a straightforward way to use POSIX named shared memory by mapping a shared memory object into a Perl variable so you can read and write it with normal string operations as long as you do not change its length. You call shared_open to attach to or create a named object such as "/somename" using familiar open-style modes and optional parameters like size, permissions, offset and extra flags, and you get back a filehandle suitable for stat, chmod and chown while using File::Map to access the contents as a scalar. shared_unlink removes the name from the namespace but the data remains until all processes close the object. This module is a simple, portable choice for exchanging data between unrelated processes and is generally preferable to SysV shared memory unless you need SysV compatibility.
Perl logo

Dist-Build

Release | 15 Mar 2026 10:34 PM | Author: LEONT | Version: 0.028
Upvotes: 1 | CPAN Testers: Pass 100.0%
A modern module builder, author tools not included!
Dist::Build is a modern, extensible Build.PL framework for packaging and building Perl distributions that focuses on building and installation rather than authoring tools. It uses an internal build graph so you can combine customizations cleanly and add features by dropping small planner scripts and calling load_extension, for example to install sharedir data or to compile XS code with add_xs. A rich plugin set supports common needs such as compiling XS modules, linking to Alien libraries, importing/exporting headers and flags, reading pkg-config, writing constants, and evaluating dynamic prerequisites. The planner exposes useful delegates for metadata, install paths and platform checks so build scripts can make informed decisions without low-level plumbing. Recent updates continue to improve XS support, most notably adding support for try_find_standard_for in the XS::Conf component to better handle language standard detection during compilation.
Perl logo

ExtUtils-Builder-Compiler

Release | 15 Mar 2026 10:28 PM | Author: LEONT | Version: 0.036
CPAN Testers: Pass 99.3%N/A 0.7%
An interface around different compilers
ExtUtils::Builder::Compiler is a small compatibility layer that presents a uniform interface to different C and C++ compilers so Perl extensions and native helpers can be built consistently across platforms. It is normally consumed by higher-level portability code such as ExtUtils::Builder::Autodetect::C rather than invoked directly, and provides methods to add include directories and preprocessor defines and to compile source files into object or executable targets. The module hides platform and compiler differences (MSVC, GCC, etc.) and integrates with the ExtUtils::Builder toolchain so XS authors and build tools can drive compilation without hand-coding many platform-specific flags. Recent maintenance work improves C++ support and module loading order, and the author has marked the ParseXS helper functions as deprecated.
Perl logo

MIDI-RtController-Filter-Tonal

Release | 15 Mar 2026 06:57 PM | Author: GENE | Version: 0.0500
Tonal RtController filters
MIDI::RtController::Filter::Tonal is a collection of ready-made tonal filters you can plug into MIDI::RtController to turn incoming note events into musical material like pedal tones, diatonic chords, delayed echoes, offset notes, arpeggios and walking melodies. Each filter is configurable with musical parameters such as pedal note, delay time, feedback, velocity, key, scale, intervals and arpeggiation type so you can shape behavior for live performance or generative accompaniment without writing low-level MIDI handling. Filters are used as callbacks on a controller instance and return a boolean to control further processing, and a helper function lets you declaratively add lists of filters to controllers. The recent 0.0500 release adds a simple single_tone filter for triggering individual notes. This module is handy if you want quick, musically informed MIDI processing for performance, composition experiments or automated backing parts.
Perl logo

SQL-Wizard

Release | 15 Mar 2026 05:50 PM | Author: TBUSCH | Version: 0.01
CPAN Testers: Pass 99.0%N/A 1.0%
Composable SQL query builder with expression trees
SQL::Wizard is a Perl library for building SQL programmatically by composing expression trees and rendering them only when you call to_sql, which returns a SQL string with "?" placeholders and the correct bind values for DBI. It treats everything as an expression so columns, functions, CASEs, subqueries, joins, window functions, CTEs, unions and more can be nested freely, and its modifier methods are immutable so you can build a base query and derive many variants without side effects. Plain Perl values become bound parameters by default to reduce injection risk while val, col and raw let you control binding or inject literal SQL when necessary. The API follows familiar SQL::Abstract-style WHERE syntax and adds conveniences like operator overloading for arithmetic, ON CONFLICT and ON DUPLICATE handling for upserts, RETURNING, and both inline and named window specifications. Output is currently standard ANSI SQL with a reserved dialect option for future tweaks. Use SQL::Wizard when you want readable, composable, and testable SQL generation in Perl with no non-core dependencies.
Perl logo

Term-TablePrint

Release | 15 Mar 2026 04:50 PM | Author: KUERBIS | Version: 0.177
Upvotes: 10 | CPAN Testers: Pass 90.6%N/A 9.4%
Print a table to the terminal and browse it interactively
Term::TablePrint is a small utility for printing and interactively browsing tabular data in a terminal, taking a reference to an array of arrays where the first row holds column names and the rest are data rows. It displays a movable cursor for row selection, supports keyboard navigation like arrows, page up/down, home/end, and a regex search prompt with Ctrl-F, and can either jump to the header or "expand" a row so each column is shown on its own line. The module automatically paginates and adapts column widths to the terminal, offers options for color, column selection, whitespace squashing, binary-data handling, numeric formatting and truncation, and a progress indicator for large datasets. You can call it procedurally via print_table or instantiate an object for repeated use. It requires decoded strings, a matching STDOUT encoding layer and Perl 5.16.0 or newer. Recent releases focus on code refactoring and stability with the latest v0.177 fixing an undefined-value bug in single-row printing and updating dependency version requirements.
Perl logo

DBIx-Class-Async

Release | 15 Mar 2026 04:21 PM | Author: MANWAR | Version: 0.65
Upvotes: 2 | CPAN Testers: Pass 42.9%Fail 51.8%N/A 5.4%
Non-blocking, multi-worker asynchronous wrapper for DBIx::Class
DBIx::Class::Async wraps DBIx::Class in a non-blocking, multi-worker bridge that turns normal DBIC calls into Futures so your event loop stays responsive while database work runs in background processes. It maintains a pool of worker processes that each hold a persistent DB connection, accepts resultset and row operations on the main process, sends them to workers over pipes, serialises results back and resolves Futures so your app can do true parallel queries, batch transactions and modern async/await styles with IO::Async or frameworks like Mojolicious. The module also provides features useful for production use such as optional CHI-based caching, deterministic SQL generation for reliable caching and debugging, query-preview helpers, metrics integration, and convenience methods like run_parallel and await_all. You should be aware it is described as experimental, custom result objects must be serialisable across processes, and caching is disabled by default because stale results can be dangerous for nondeterministic SQL. A recent 0.64 fix improves handling of InflateColumn::DateTime by correctly re-inflating datetime columns in the parent process so stringification matches the database format. If you need responsive, high-concurrency DBIC access without blocking an event loop, this module is directly relevant.
Perl logo

CPANSA-DB

Release | 15 Mar 2026 04:15 PM | Author: BRIANDFOY | Version: 20260315.002
Upvotes: 4 | CPAN Testers: Pass 82.5%N/A 17.5%
The CPAN Security Advisory data as a Perl data structure, mostly for CPAN::Audit
CPANSA::DB exposes the CPAN Security Advisory reports as a ready-to-use Perl data structure, primarily consumed by CPAN::Audit but useful to any Perl code that needs programmatic access to CPAN security advisories. Its single subroutine, db(), returns a hashref containing all advisory entries so you can easily query or process the data in your own tools. Releases are published on GitHub and include a .gpg signature and a GitHub attestation so you can verify the archive and ensure the data has not been tampered with. A JSON file with the same dataset is also provided for non-Perl consumers. Use this if you need an authoritative, verifiable source of CPAN security advisory data for auditing, monitoring, or automation.
Perl logo

Test-Expander

Release | 15 Mar 2026 03:27 PM | Author: JSF | Version: v2.6.1
CPAN Testers: Pass 93.5%Fail 1.6%N/A 4.9%
Expansion of test functionalities that appear to be frequently used while testing
Test::Expander is a helper for writing Perl test scripts that reduces boilerplate around Test2::V1 by auto-detecting the module and method under test, exporting handy read-only variables like $CLASS, $METHOD and $METHOD_REF, and providing quick support for temporary directories and files. It includes a test_table function that makes table-driven testing easy either from a separate .tdt file or from inline data, brings in select Path::Tiny and File::Temp helpers, and exports several Test::More and Test::Exception routines for smoother migration of older tests. You can configure a clean, cascading test environment with simple .env files, override builtins or @INC entries, select subtests to run by name or number when invoking prove, and opt to bail out immediately on the first failure. The module is aimed at Perl developers who want clearer, more maintainable tests with less repetitive setup and is best used as the first module loaded in a test file.
Perl logo

Data-NestedKey

Release | 15 Mar 2026 12:24 PM | Author: BIGFOOT | Version: v1.0.7
CPAN Testers: Pass 99.0%N/A 1.0%
Data::NestedKey
Data::NestedKey is a lightweight, object-oriented Perl utility for working with deeply nested hash structures using simple dot-separated key paths, so you can set, get, delete and check values without writing manual traversal code. You instantiate it with an existing hash or key/value pairs and then use set and get with paths like foo.bar.baz to update or retrieve values; set also supports a + prefix to append or merge and a - prefix to remove elements. The object can serialize itself to JSON, YAML, Data::Dumper or Storable with pretty JSON by the default and is especially useful for programmatic edits of structured configuration files. The recent 0.06 release added the +/- append/remove syntax, stringification so the object interpolates to its serialized form, and the ability to construct an empty object.
Perl logo

Bored

Release | 15 Mar 2026 08:20 AM | Author: LNATION | Version: 0.06
CPAN Testers: Pass 100.0%
News!
Bored is a tiny, tongue-in-cheek Perl module that provides a handful of no‑op routines and an object interface to express boredom or serve as playful placeholders in scripts. You can import the simple procedural function bored_one or create a Bored object and call methods such as pointless(), waiting(), and tortured() to get trivial, humorous behavior suitable for demos, tests, or adding comedic fluff to code. The module is intentionally lightweight and not meant for production functionality, and it is released under the Artistic License 2.0. The distribution is an early, minimalist release that mainly supplies these basic stubs for amusement or illustrative use.
Perl logo

Mooish-Base

Release | 15 Mar 2026 07:30 AM | Author: BRTASTIC | Version: 1.005
Upvotes: 1 | CPAN Testers: Pass 98.5%N/A 1.5%
Importer for Mooish classes
Mooish::Base is a simple importer that gives you a ready-made, consistent starting point for building classes or roles with the Moose family of object systems. By default it pulls in Moo, Mooish::AttributeBuilder, Types::Common and namespace::autoclean so you avoid repetitive boilerplate, and you can request role behaviour with the -role flag to import Moo::Role instead. A pair of environment variables let you substitute different flavour implementations before the module is loaded and an extra-variable lets you opt into additional performance add-ons if they are installed such as Type::Tiny helpers or faster constructor/accessor backends, though XSConstructor support is disabled by default because it is not yet stable. The module only loads extras that do not change runtime behavior, it will try to make Moose classes immutable when appropriate and it provides a $Mooish::Base::DEBUG hook that records what was loaded for each class to help debugging. Module authors are encouraged to use the -standard flag to avoid leaking caller-specific customizations and to ensure stable, predictable imports for downstream users.
Perl logo

Testcontainers

Release | 15 Mar 2026 06:55 AM | Author: DRAGOSV | Version: 0.001
CPAN Testers: Pass 29.6%N/A 69.4%Unknown 0.9%
Testcontainers for Perl - Docker containers for testing
Testcontainers for Perl is a simple library for running disposable Docker containers as part of automated integration and smoke tests, letting you programmatically start services, wait until they are ready, and clean them up when tests finish. Its tidy API exposes a run function that returns a container object you can query for host and mapped ports and a terminate method to remove the container, and it supports environment variables, labels, custom commands, network settings, and startup timeouts. The module includes built-in wait strategies such as waiting for a listening port, an HTTP endpoint, log output, or a health check, plus convenience modules for common services like PostgreSQL, MySQL, Redis, and Nginx. It uses WWW::Docker as the Docker client and handles port mapping and host resolution for you, with optional overrides via DOCKER_HOST and a flag to disable the Ryuk resource reaper. If you need reliable, short-lived containerized dependencies for test suites, this module gives a straightforward, test-friendly way to manage them.
Perl logo

Langertha-Skeid

Release | 15 Mar 2026 01:24 AM | Author: GETTY | Version: 0.001
CPAN Testers: Pass 100.0%
Dynamic routing control-plane for multi-node LLM serving with normalized metrics and cost accounting
Langertha::Skeid is a control-plane and lightweight proxy for routing requests across many LLM backends while collecting normalized token and cost metrics for consistent billing and observability. It keeps a live node table and chooses targets by model, health and capacity so you can front cloud and local engines from one API edge, and it records usage in a single ledger so tenant billing and cost reports are straightforward. The usage storage layer is pluggable and the release adds a recommended jsonlog backend that writes one JSON file per event or a JSON-lines file to avoid DBI dependencies, while also supporting SQLite and PostgreSQL or user-provided callbacks or subclass overrides. Admin routes are protected by a configurable API key and can be hidden entirely when no key is set. The module includes helpers for pricing and cost estimation, non-blocking proxy handling for higher concurrency, a CLI for usage reporting, and example configs to get started. Noteworthy in this initial release is the move to make usage storage swappable and DBI optional so you can deploy without a database, and the extraction of the control-plane from the Knarr project as a standalone package.
Perl logo

App-uniprint

Release | 15 Mar 2026 12:06 AM | Author: PERLANCAR | Version: 0.001
CPAN Testers: Pass 96.7%N/A 3.3%
Print each Unicode character of input, along with its codepoint and name
App::uniprint is a small command-line utility that prints every Unicode character from its input together with that character's codepoint and official Unicode name, making it easy to inspect text at the character level. It is useful for finding invisible or unexpected characters, debugging encoding problems, and learning what specific glyphs actually are without digging through Unicode tables. The tool is distributed as the uniprint script and the project is hosted on MetaCPAN and GitHub. This is the initial release of the module.
Perl logo

Data-HashMap-Shared

Release | 14 Mar 2026 10:21 PM | Author: EGOR | Version: 0.01
CPAN Testers: Pass 81.5%Fail 4.9%N/A 11.1%Unknown 2.5%
Type-specialized shared-memory hash maps for multiprocess access
Data::HashMap::Shared provides file-backed, type-specialized hash maps in shared memory so multiple Linux processes can read and update the same table efficiently. It ships ten prebuilt variants for integer and string keys and values, uses a futex-backed seqlock design to enable lock-free fast reads, and provides lock-free atomic increments, optional LRU eviction and per-key TTL for cache-style use, elastic resizing, and an arena allocator for stored strings. You can use a compact keyword XS API for maximum speed or the regular method API, and the module supports safe iteration, independent cursors, and diagnostics for capacity and eviction statistics. The implementation detects and recovers from writers that die while holding the write lock by checking PIDs, but this assumes a shared PID namespace so cross-container sharing is not supported, and clearing the map after a recovery is recommended for safety-critical cases. The initial 0.01 release brings the ten type-specialized variants, bundled xxHash, eviction and TTL features, and the performance primitives that make this well suited for high-throughput interprocess caches and counters on 64-bit Linux.
Perl logo

XML-PugiXML

Release | 14 Mar 2026 09:48 PM | Author: EGOR | Version: 0.02
Upvotes: 1 | CPAN Testers: Pass 60.7%Fail 38.5%Unknown 0.9%
Perl binding for pugixml C++ XML parser
XML::PugiXML is a Perl interface to the fast pugixml C++ parser that gives you quick, memory-safe XML parsing, XPath queries, and a familiar DOM-style API for inspecting and modifying documents. It automatically handles UTF-8 for inputs and outputs, provides compiled XPath support for repeated queries, and exposes convenient methods for navigating nodes and attributes, creating or cloning elements, and serializing with configurable formatting and parse options. The module uses reference counting so node handles keep their parent document alive, avoids processing external entities by default, and reports parse errors via return values while throwing on XPath syntax errors. The recent 0.02 update added stale-handle detection to prevent segfaults after a reset or reload, enabled XPath attribute selection and an Attr::element() parent accessor, upgraded all string inputs to UTF-8, and improved 64-bit integer handling on 32-bit Perls, making it a robust choice when you need high-performance XML work from Perl.
Perl logo

EV-ClickHouse

Release | 14 Mar 2026 09:46 PM | Author: EGOR | Version: 0.01
CPAN Testers: Pass 85.7%Fail 8.8%N/A 2.0%Unknown 3.4%
Async ClickHouse client using EV
EV::ClickHouse is an asynchronous ClickHouse client for Perl that integrates with the EV event loop and lets you issue queries and inserts without blocking your application. It speaks both the HTTP and native TCP protocols, supports optional TLS, gzip and LZ4 compression, per-query and connection-level settings, streamed results via an on_data callback, INSERTs from TSV or arrayrefs, query timeouts, cancellation and automatic reconnect with exponential backoff. The native protocol returns typed columns and provides opt-in decoding for Date/DateTime, Decimal and Enum types and an option to return named rows as hashrefs, while accessors expose metadata like column names, server version and query profiling info. Note that DNS resolution is currently blocking so use IP addresses or a local caching resolver for fully asynchronous behavior. The initial 0.01 release delivers the core feature set including async HTTP queries, native binary protocol support, compression, streaming, parameterized queries and useful metadata and control hooks.
Perl logo

EV-Etcd

Release | 14 Mar 2026 09:09 PM | Author: EGOR | Version: 0.05
CPAN Testers: N/A 100.0%
Async etcd v3 client using native gRPC and EV/libev
EV::Etcd is a high-performance asynchronous etcd v3 client for Perl that uses the native gRPC Core C API and integrates with the EV/libev event loop. It exposes the full etcd surface in a non-blocking way, including key/value operations, watches with automatic reconnect, leases and keepalives, distributed locks, leader election, transactions, cluster membership and maintenance commands, plus full authentication and role management. Callbacks receive structured error hashrefs with gRPC status and a retryable flag so you can implement sensible retry logic, and streaming operations return handle objects you can cancel or configure with options like auto_reconnect and max_retries. The client also offers health monitoring and multi-endpoint failover for resilient deployments, but note that EV::Etcd objects are not fork safe and you should create a new client in child processes. Recent maintenance releases fixed load-order and edge-case bugs and improved error and watch handling for greater robustness.
Perl logo

Regexp-Common

Favorite | 14 Mar 2026 09:01 PM | Author: ABIGAIL | Version: 2024080801
Upvotes: 59 | CPAN Testers: Pass 99.3%Fail 0.7%
Provide commonly requested regular expressions
Regexp::Common is a convenience library of ready-made, reusable regular expressions exposed as a tied hash %RE or as exported RE_* subroutines so you can quickly match things like balanced delimiters, many comment syntaxes, delimited and quoted strings, numbers, IP and MAC addresses, whitespace trims, postal codes, profanity and more without writing the regex yourself. Patterns are customizable with flags such as -keep to turn on captures and -i for case insensitive matching, and they are returned as objects so you can call matches() or subs() for inline matching and substitutions; if you need speed you can use the functional RE_* interface which returns qr// regexes. You can also register your own pattern generators at runtime with pattern(), choose which pattern sets to load, and combine flags to curry specialized matchers. Be aware that patterns are deliberately unanchored so they match substrings unless you anchor them, and some advanced patterns require a modern Perl because they use newer regex features. The module is actively maintained and the latest release removed legacy use vars and updated the MySQL comment pattern.
Perl logo

DBD-Pg

Favorite | 14 Mar 2026 07:32 PM | Author: TURNSTEP | Version: 3.19.0
Upvotes: 103 | CPAN Testers: Pass 64.7%Fail 25.0%Unknown 10.3%
DBI PostgreSQL interface
DBD::Pg is the standard Perl DBI driver for talking to PostgreSQL databases, letting you open connections, run queries, manage transactions, and fetch results from Perl programs. It supports server-side prepared statements, a rich set of placeholder styles, and explicit control over AutoCommit and transactions including savepoints. The driver also handles PostgreSQL-specific features such as array types, bytea and geometric types, large objects, fast COPY-based bulk import/export, asynchronous queries and connects, and helpers for quoting, encoding, and last-insert-id retrieval. You can import PostgreSQL type constants and limits for precise bind_param use, and there are many driver-specific attributes to tune behavior like UTF8 handling and when to switch to server-side prepared statements. DBD::Pg is actively maintained with source and issue tracking on GitHub, and the documentation warns to explicitly set AutoCommit and to be aware that server-side prepares can change how some statements behave. If you need reliable, full-featured PostgreSQL access from Perl, DBD::Pg is the relevant module.
Perl logo

Thrift-XS

Release | 14 Mar 2026 05:44 PM | Author: TIMLEGGE | Version: 1.10
CPAN Testers: Pass 98.6%N/A 1.4%
Faster Thrift binary protocol encoding and decoding
Thrift::XS is a drop-in, faster implementation of the Perl Thrift binary and compact protocols and the in-memory transport, implemented in XS to accelerate encoding and decoding of Thrift RPC payloads. If you already use Perl Thrift clients you can usually switch by replacing the standard BinaryProtocol or MemoryBuffer classes with Thrift::XS::BinaryProtocol or Thrift::XS::CompactProtocol and Thrift::XS::MemoryBuffer to get substantial throughput and latency improvements, especially for many small reads and writes. For the biggest gains use it with an optimized socket layer and the XS memory buffer because standard transports such as BufferedTransport, FramedTransport, or HttpClient may limit the benefit and HttpClient is known to make many tiny syscalls. Recent releases moved the build and release process to Dist::Zilla, added a security policy, and made Thrift a declared dependency after removing the previously embedded copy, so installation now relies on the upstream Thrift distribution.
Perl logo

Masscan-Client

Release | 14 Mar 2026 03:06 PM | Author: HGOUVEA | Version: 0.01
CPAN Testers: Pass 25.7%Unknown 74.3%
Perl bindings for masscan scanning
Masscan::Client is a simple object-oriented Perl wrapper around the Masscan network scanner that makes it easy to assemble, run, and parse high-speed port scans from Perl programs. You build a client by adding hosts, ports or port ranges and any extra masscan arguments, optionally set the binary path, verbosity or DNS servers, then call scan and receive the results as a native Perl data structure containing per-host timestamps and open-port details. The module handles command-line construction, JSON output parsing and logging via Log::Log4perl and will try to find the masscan binary on your PATH if you do not provide one. It relies on common CPAN modules such as Moose and Net::DNS and requires the external masscan program plus the necessary execution privileges, so it is a good fit for scripts and tools that need to orchestrate automated network scans from Perl.
Perl logo

Graph-Easy-Introspect

Release | 14 Mar 2026 11:28 AM | Author: NKH | Version: 0.01
CPAN Testers: Pass 99.3%Fail 0.7%
Introspection and AST for Graph::Easy layouts
Graph::Easy is a Perl library for building, parsing and rendering node and edge graphs into readable diagrams and portable formats. You can create graphs programmatically or from a simple text syntax, attach attributes to nodes, edges and groups, and then render the result as ASCII art, Unicode box drawing, HTML with CSS, SVG (with an optional helper module), Graphviz DOT, GraphML or legacy GDL/VCG. Its built in Manhattan grid layouter is geared toward flow charts, network diagrams and hierarchical trees and makes it easy to produce compact, human friendly diagrams or to pipe DOT output to Graphviz when you need more advanced rendering. The module supports anonymous nodes, groups, multi edges and basic animation steps for describing state flows though animations are not yet exported to output. There are a few known layouter limits such as imperfect group nesting and missing group-to-node link handling and there is no internal scoring or second stage optimizer, but for quickly creating and exporting diagrams in many formats Graph::Easy is a practical, easy to use choice.