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

@frantisekstanko/assertion

v1.0.0

Published

Type-safe assertion library for TypeScript

Readme

assertion

CI npm version License: MIT codecov Bundle Size TypeScript

Type-safe assertion library for TypeScript with runtime validation and type narrowing.

Features

  • 🎯 Type-safe - Full TypeScript support with type narrowing
  • 🏗️ Custom exceptions - Use your own domain exceptions for Hexagonal/Clean Architecture
  • 🚀 Zero dependencies - Lightweight and fast
  • 🔒 Runtime validation - Validate unknown data at runtime
  • 📦 Tree-shakeable - Only bundle what you use
  • 🌐 Universal - Works in Node.js and browsers (see Browser Support)

Installation

npm install @frantisekstanko/assertion

Usage

Basic Example

import { Assertion } from '@frantisekstanko/assertion'

function processData(value: unknown) {
  Assertion.string(value)
  // value is now typed as string
}

API

Type Assertions

Assertion.string(value, message?)

Assert value is a string.

Assertion.string('hello') // ✓ passes
Assertion.string(123) // ✗ throws

Assertion.number(value, message?)

Assert value is a finite number (not NaN or Infinity).

Assertion.number(42) // ✓ passes
Assertion.number(3.14) // ✓ passes
Assertion.number(NaN) // ✗ throws
Assertion.number(Infinity) // ✗ throws

Assertion.greaterThan(value, threshold, message?)

Assert value is a number greater than a threshold.

Assertion.greaterThan(10, 5) // ✓ passes
Assertion.greaterThan(5, 5) // ✗ throws
Assertion.greaterThan(3, 5) // ✗ throws

Assertion.lessThan(value, threshold, message?)

Assert value is a number less than a threshold.

Assertion.lessThan(3, 5) // ✓ passes
Assertion.lessThan(5, 5) // ✗ throws
Assertion.lessThan(10, 5) // ✗ throws

Assertion.nullOrString(value, message?)

Assert value is a string or null.

Assertion.nullOrString('hello') // ✓ passes
Assertion.nullOrString(null) // ✓ passes
Assertion.nullOrString(undefined) // ✗ throws

Assertion.nullOrNumber(value, message?)

Assert value is a finite number or null.

Assertion.nullOrNumber(42) // ✓ passes
Assertion.nullOrNumber(null) // ✓ passes
Assertion.nullOrNumber(NaN) // ✗ throws
Assertion.nullOrNumber(Infinity) // ✗ throws

Assertion.notNull(value, message?)

Assert value is not null or undefined.

Assertion.notNull('hello') // ✓ passes
Assertion.notNull(0) // ✓ passes
Assertion.notNull(null) // ✗ throws
Assertion.notNull(undefined) // ✗ throws

Assertion.array(value, message?)

Assert value is an array.

Assertion.array([1, 2, 3]) // ✓ passes
Assertion.array([]) // ✓ passes
Assertion.array('not array') // ✗ throws

Assertion.object(value, message?)

Assert value is a plain object (not an array or null).

Assertion.object({}) // ✓ passes
Assertion.object({ a: 1 }) // ✓ passes
Assertion.object([]) // ✗ throws
Assertion.object(null) // ✗ throws

Assertion.boolean(value, message?)

Assert value is a boolean.

Assertion.boolean(true) // ✓ passes
Assertion.boolean(false) // ✓ passes
Assertion.boolean(1) // ✗ throws

Assertion.nullOrBoolean(value, message?)

Assert value is a boolean or null.

Assertion.nullOrBoolean(true) // ✓ passes
Assertion.nullOrBoolean(null) // ✓ passes
Assertion.nullOrBoolean(undefined) // ✗ throws

Assertion.function(value, message?)

Assert value is a function.

Assertion.function(() => {}) // ✓ passes
Assertion.function(Math.max) // ✓ passes
Assertion.function({}) // ✗ throws

Assertion.minLength(value, min, message?)

Assert value is a string or array with minimum length.

Assertion.minLength('hello', 3) // ✓ passes
Assertion.minLength([1, 2, 3], 2) // ✓ passes
Assertion.minLength('hi', 5) // ✗ throws

Assertion.maxLength(value, max, message?)

Assert value is a string or array with maximum length.

Assertion.maxLength('hello', 10) // ✓ passes
Assertion.maxLength([1, 2], 5) // ✓ passes
Assertion.maxLength('toolong', 3) // ✗ throws

Assertion.regex(value, pattern, message?)

Assert value is a string matching a regular expression.

Assertion.regex('abc123', /^[a-z]+[0-9]+$/) // ✓ passes
Assertion.regex('123abc', /^[a-z]+[0-9]+$/) // ✗ throws

Assertion.email(value, message?)

Assert value is a valid email address.

Assertion.email('[email protected]') // ✓ passes
Assertion.email('invalid-email') // ✗ throws

Assertion.url(value, message?)

Assert value is a valid URL.

Assertion.url('https://example.com') // ✓ passes
Assertion.url('not-a-url') // ✗ throws

Assertion.uuid(value, message?)

Assert value is a valid UUID.

Assertion.uuid('550e8400-e29b-41d4-a716-446655440000') // ✓ passes
Assertion.uuid('invalid-uuid') // ✗ throws

Assertion.instanceOf(value, constructor, message?)

Assert value is an instance of a constructor.

class MyClass {}
const instance = new MyClass()
Assertion.instanceOf(instance, MyClass) // ✓ passes
Assertion.instanceOf({}, MyClass) // ✗ throws

Error Handling

All assertion methods throw AssertionException when validation fails. You can catch and handle these exceptions:

import { Assertion, AssertionException } from '@frantisekstanko/assertion'

try {
  Assertion.string(123)
} catch (error) {
  if (error instanceof AssertionException) {
    console.error('Validation failed:', error.message)
  }
}

Custom Exception Classes

Keep your domain layer clean and vendor-agnostic by using your own exception classes. This is especially valuable in Hexagonal/Clean Architecture where you want to avoid coupling your domain to third-party libraries.

Extend the Assertion class to throw your own domain exceptions:

import { Assertion } from '@frantisekstanko/assertion'

// Your domain exception in the core layer
class DomainValidationError extends Error {
  constructor(message: string) {
    super(message)
    this.name = 'DomainValidationError'
  }
}

// Create your domain-specific assertion class
class DomainAssertion extends Assertion {
  protected static createException(message: string): Error {
    return new DomainValidationError(message)
  }
}

Now your domain layer only knows about DomainValidationError, not the assertion library:

// In your domain layer - no vendor coupling!
try {
  DomainAssertion.string(userInput)
  DomainAssertion.email(email)
} catch (error) {
  if (error instanceof DomainValidationError) {
    // Handle with your domain error handling strategy
  }
}

This approach maintains the dependency inversion principle - your core domain doesn't depend on external libraries.

Browser Support

This library is fully compatible with modern browsers. It uses only standard JavaScript features available across all modern browser environments:

  • No Node.js-specific APIs - Zero dependencies on Node.js runtime features like fs, process, or path
  • Universal JavaScript - Only uses standard APIs: typeof, Array.isArray(), isNaN(), isFinite(), and the URL constructor
  • Modern JavaScript - Compiled to ES2022, supported by all current browsers

You can use it directly in browser applications, web workers, or any JavaScript runtime without modification.

License

MIT © Frantisek Stanko