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

@bemedev/typings

v1.2.0

Published

Typings by variables

Readme

@bemedev/typings

Typings by variables

Usage

import { type } from '@bemedev/typings';

const result = type(({ array, optional, intersection }) => ({
  nodes: optional(
    array(
      intersection(
        {
          position: {
            x: 'number',
            y: 'number',
          },
          data: {
            label: optional('string'),
            content: 'string',
          },
          input: 'boolean',
        },
        { id: 'string' },
      ),
    ),
  ),
}));

expectTypeOf(result).toEqualTypeOf<{
  nodes?: Array<{
    position: { x: number; y: number };
    data: { label?: string; content: string };
    input: boolean;
    id: string;
  }>;
}>();

Pre-processing Types with pretype

The pretype function allows you to pre-process type definitions before transformation, enabling type context chaining and reusable type pipelines:

import { type, pretype } from '@bemedev/typings';

const baseType = type(({ partial, record, primitiveObject }) =>
  partial({
    emitters: record({
      next: primitiveObject.const,
      error: primitiveObject.const,
    }),
    children: record(primitiveObject.map.const),
  }),
);

const pretypedResult = pretype(baseType);

// Access the pre-processed type context
const finalType = pretypedResult({
  emitters: {
    data: { next: 'string', error: 'string' },
  },
  children: { eventMap: 'string' },
});

expectTypeOf(finalType.type).toEqualTypeOf<{
  emitters?: { data: { next: string; error: string } };
  children?: { eventMap: string };
}>();

// The pretype result includes the original type definition
expectTypeOf(pretypedResult.pretype).toEqualTypeOf(baseType);

N.B. The pretype function is designed to work with the type definitions created using the type function, allowing you to create complex type transformations while maintaining access to the original type context for further processing or reuse. Also pretype.pretype is a getter to the original type definition, which can be useful for chaining or referencing the base type in multiple transformations.

Available Helpers

  • any: Any type
  • array: Array of types
  • custom: Custom type
  • intersection: Intersection of types
  • litterals: Literal types
  • object: Object schema helper
  • omit: Omit specific keys from an object
  • optional: Optional types
  • partial: Partial types
  • primitive: Primitive type definitions
  • primitiveObject: Primitive object schema
  • readonly: Readonly object types
  • record: Record types
  • soa: Single or Array types
  • sora: Single or Array types, with recursive support, (soa with recursion)
  • sv: State Value
  • tuple: Tuple types
  • union: Union types

Licence

MIT

CHANGELOG

Auteur

chlbri ([email protected])

My github

Liens