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

@clementine-solutions/jane-io

v1.0.12

Published

A clarity-first boundary system for shaping, validating, and transforming data with full introspection and policy control.

Readme

Jane-IO

pipeline status coverage report npm version License: Apache-2.0

A clarity-first boundary system for shaping, validating, and transforming data with full introspection and policy control.

Jane-IO is a TypeScript-first data validation library that emphasizes explicit design, runtime safety, and comprehensive observability. Unlike traditional validators, Jane treats data processing as a multi-stage pipeline with policy-driven decision making.

Key Features

  • Security-First: Built-in protection against prototype pollution, circular references, and unsafe Unicode
  • Type-Safe: Full TypeScript coverage with immutable, composable APIs
  • Observable: Rich telemetry, diff tracking, and audit trails
  • Configurable: Policy-driven behavior with multiple validation modes
  • Performant: Lazy evaluation and efficient data structures
  • Extensible: Plugin architecture for custom validators and parsers

Installation

npm install @clementine-solutions/jane-io
yarn add @clementine-solutions/jane-io
pnpm add @clementine-solutions/jane-io

Quick Start

import { jane } from '@clementine-solutions/jane-io';

// Simple validation
const result = await jane.value(37)
  .parse("numeric")
  .integer()
  .min(21)
  .run();

if (result.ok) {
  console.log("Valid email:", result.value);
} else {
  console.log("Issues:", result.issues);
}

Documentation

Use Cases

Jane excels at:

  • API Data Validation: Secure processing of external inputs.
  • Configuration Management: Structured config validation with audit trails.
  • Data Transformation Pipelines: ETL workflows with error tracking.
  • Form Validation: Complex multi-field validation scenarios.
  • Data Import/Export: Safe handling of structured data.

Architecture

Jane's pipeline processes data through distinct stages:

graph LR
    A[Raw Input] --> B[Contain]
    B --> C[Scan]
    C --> D[Normalize]
    D --> E[Parse]
    E --> F[Validate]
    F --> G[Policy]
    G --> H[Result]
  • Contain: Structural safety and sanitization.
  • Scan: Analysis and hazard detection.
  • Normalize: Data hygiene and standardization.
  • Parse: Semantic interpretation.
  • Validate: Business rule enforcement.
  • Policy: Decision-making and observability.

Security Features

  • Structural Hazard Detection: Identifies circular references, excessive depth, and unsafe structures.
  • Unicode Safety: Detects and handles bidirectional control characters.
  • Prototype Pollution Prevention: Safe property access and key filtering.
  • Containment Sentinels: Safe representation of dangerous values.
  • Immutable Processing: No side effects or data mutation.

Observability

Jane provides comprehensive introspection:

const result = await jane.value(data)
  .withDiff()      // Track changes
  .withExplain()   // Explain decisions
  .withReplay()    // Reconstruct transformations
  .withTelemetry(sink) // Custom telemetry
  .run();

// Access detailed metadata
console.log(result.metadata);
console.log(result.diff);
console.log(result.explain);

License

Licensed under the Apache License, Version 2.0. See LICENSE for details.

Acknowledgments

Jane IO is built with care for the developer experience and runtime safety. Special thanks to the TypeScript community and the broader JavaScript ecosystem for inspiration and tooling.

Support


Jane IO - Observable data validation with clarity and confidence.