npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@xhe-carpenter/plex-runtime

v0.1.0

Published

PLEX Runtime compute and execution framework

Downloads

6

Readme

PLEX Runtime™ – Pulsed Layered Exhaustive eXecution

A deterministic runtime for exhaustive compute workloads.
Non-commercial MIT; commercial license required for monetized use.


Table of Contents

  1. Overview
  2. Why PLEX Exists
  3. Key Concepts
  4. Execution Model
  5. Installation
  6. CLI Usage
  7. Reference Implementation
  8. Dual Licensing
  9. Contributing
  10. Contact

Overview

PLEX Runtime™ is a reference execution engine for exhaustive workloads that require:

  • Every byte examined
  • Deterministic execution
  • Linear, verifiable scaling
  • No sampling, no shortcuts

Target Workloads:

  • Security and compliance scans
  • Full-dataset pattern matching
  • Verification and audit workloads
  • Broad anomaly detection

PLEX is not a database, query language, or framework — it is a formal execution model with correctness-first scheduling.


Why PLEX Exists

Modern data lakes and lakehouses store petabytes of unstructured and semi-structured data. Traditional indexed engines fail for workloads that touch:

  • 8–10% of total data

  • Large portions without selective keys

Problems include:

  • Indexes collapse
  • Latency becomes unpredictable
  • Costs explode
  • Coverage is incomplete

PLEX is designed for deterministic exhaustive scanning, enabling predictable costs, guaranteed coverage, and linear scaling.


Key Concepts

PLEX Runtime™ enforces four core invariants:

  1. No shared mutable state
  2. No global synchronization
  3. Pulsed work dispatch
  4. Deterministic per-unit execution

Benefits:

  • Linear scaling from single-node to multi-cluster
  • Predictable saturation
  • Deterministic, reproducible results

Execution Model

PLEX decomposes work into a layered fan-out execution tree:


Controller
├─ Partition Layer
│   ├─ Chunk Layer
│   │   ├─ Scan Units

Pulse Behavior:

  • Work is released in bounded pulses
  • Each pulse is independently verifiable
  • Pulses prevent system overload

This contrasts with traditional map-reduce or unbounded task queues.


Installation

Node.js / NPM

npm install @iconoclast/plex-runtime

From Source

git clone https://github.com/jamesbrianchapman/PLEX-Runtime.git
cd PLEX-Runtime
npm install

CLI Usage

After installation, the plex CLI is available:

# Run exhaustive scan on dataset
plex run ./data.json --pulse-size 32 --max-concurrency 8

Options:

  • --pulse-size: Number of tasks per pulse
  • --max-concurrency: Maximum concurrent tasks per node
  • --help: Display CLI help

Reference Implementation

The repository includes a non-commercial reference runtime demonstrating:

  • Pulsed scheduling
  • Deterministic task execution
  • Task isolation guarantees

Example usage:

const PlexRuntime = require('@iconoclast/plex-runtime');

const runtime = new PlexRuntime({ pulseSize: 32, maxConcurrency: 8 });

(async () => {
  const dataset = [...]; // Array of data items
  const results = await runtime.run(dataset, async (item) => {
    // Example scan function
    return item.value * 2;
  });
  console.log(results);
})();

Note: This implementation does not include GPU optimizations, peak saturation tuning, or proprietary pulse shaping algorithms — those are reserved for commercial licensees.


Dual Licensing

PLEX Runtime™ uses a dual license model:

1. MIT License – Non-Commercial Use

  • Research, experimentation, local development
  • Academic or personal projects
  • Prohibited for revenue-generating use

2. Commercial License – Required for Monetized Use

  • Any paid service or internal revenue-generating use
  • Includes optimized runtime, GPU backends, and enterprise support
  • Contact for licensing: [email protected]

Contributing

Contributions are welcome for:

  • Bug fixes
  • Documentation
  • Non-commercial runtime improvements

All contributions require a Contributor License Agreement (CLA). See CLA.md for details.


Contact

Owner / Maintainer: James Brian Chapman Emails for verification / communication:

GitHub: https://github.com/jamesbrianchapman/PLEX-Runtime


Disclaimer: This repository discloses only the minimal execution logic for research and non-commercial use. Proprietary peak-performance optimizations remain reserved for commercial licensees.