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

@dongxiang678/typechecker

v1.0.0

Published

A lightweight and flexible type checker for JavaScript, enforce strong template-type checking on functions and classes

Readme

typeChecker

A lightweight, flexible and template-based type checker for JavaScript. Enforce strong type safety on functions and classes without TypeScript.

📦 NPM 包名:@dongxiang678/typechecker
安装:npm install @dongxiang678/typechecker --save

Features

  • ✅ Template-based type constraint (support all JS types: Number/String/Array/Custom Class)
  • ✅ Strong type checking for function parameters & return values
  • ✅ No implicit type conversion between different types
  • ✅ Lightweight (0 dependencies), easy to integrate
  • ✅ Compliant with JavaScript ecosystem norms (suitable for large projects)

Installation

npm install @dongxiang678/typechecker --save
# or yarn
yarn add @dongxiang678/typechecker

Quick Start

1. Basic Type Check

const { createCheckerTemplate, enforceReturnType } = require('@dongxiang678/typechecker');

// Create a checker template for String type
const StringChecker = createCheckerTemplate(String);

// Enforce function to return StringChecker
const getString = enforceReturnType(StringChecker, (value) => {
  const checker = new StringChecker();
  return checker.check(value);
});

// Success
console.log(getString("Hello typeChecker!").getValue()); // "Hello typeChecker!"

// Error: Number type cannot be converted to String
try {
  getString(123);
} catch (err) {
  console.error(err.message); // "Return value type error: Checker<Number> cannot be converted to Checker<String>"
}

2. Custom Class Check

const { createCheckerTemplate, enforceFunctionType } = require('typeChecker');

class User {
  constructor(name) {
    this.name = name;
  }
}

// Create a checker template for User class
const UserChecker = createCheckerTemplate(User);

// Enforce parameter & return type (UserChecker)
const getUser = enforceFunctionType([UserChecker], UserChecker, (checker) => {
  return checker.check(new User("张三"));
});

// Success
const userChecker = new UserChecker(new User("李四"));
console.log(getUser(userChecker).getValue().name); // "张三"

API

createCheckerTemplate(targetType)

Create a type checker template for specific type.

  • targetType: Function (e.g., String, User) or string (e.g., "Number")
  • Returns: Checker class with type constraint

enforceFunctionType(paramCheckers, returnChecker, fn)

Enforce type checking for function parameters and return value.

enforceReturnType(returnChecker, fn)

Simplified: only enforce return value type.

Why Choose This?

  • Solve type-related bugs in pure JavaScript projects
  • No TypeScript required, but achieve strong type safety
  • Lightweight and modular (works with any project scale)
  • Intuitive API, easy to learn and use

License

MIT