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

@missionfabric-js/enzyme-typescript

v1.0.1

Published

TypeScript utilities for the Enzyme enterprise React framework

Readme

@missionfabric-js/enzyme-typescript

Enterprise-grade TypeScript utilities for the Enzyme React framework.

Installation

npm install @missionfabric-js/enzyme-typescript

Features

This package provides 10 comprehensive modules with 53,000+ lines of production-ready TypeScript utilities:

Core (/core)

Fundamental utilities including Result/Option types, pipelines, guards, and resource disposal.

import { Result, Option, pipe, guard } from '@missionfabric-js/enzyme-typescript/core';

const result = Result.ok(42).map(x => x * 2);
const option = Option.from(maybeValue).getOrElse(defaultValue);

Types (/types)

Advanced TypeScript type utilities for branded types, deep transformations, and type-safe paths.

import type { Brand, DeepPartial, Path, PathValue } from '@missionfabric-js/enzyme-typescript/types';

type UserId = Brand<string, 'UserId'>;
type PartialConfig = DeepPartial<Config>;

Schema (/schema)

Zod-based validation utilities for forms, APIs, and configuration.

import { email, uuid, createFormSchema, validateEnv } from '@missionfabric-js/enzyme-typescript/schema';

const userSchema = createFormSchema({
  email: email(),
  id: uuid(),
});

Config (/config)

Configuration management with multi-source loading, validation, and hot reloading.

import { ConfigLoader, ConfigProvider } from '@missionfabric-js/enzyme-typescript/config';

const config = await new ConfigLoader({ sources: [...] }).load();

Generators (/generators)

Code generation utilities for components, hooks, and API clients.

import { ComponentGenerator, HookGenerator } from '@missionfabric-js/enzyme-typescript/generators';

const component = new ComponentGenerator().generateFunctional({ name: 'Button' });

Hooks (/hooks)

Hook factory and composition utilities for React.

import { createHook, composeHooks, useEnhancedState } from '@missionfabric-js/enzyme-typescript/hooks';

const useMyHook = createHook((props) => { ... }, { name: 'useMyHook' });

State (/state)

State management utilities with slices, selectors, and middleware.

import { createStore, createSlice, createSelector } from '@missionfabric-js/enzyme-typescript/state';

const counterSlice = createSlice({
  name: 'counter',
  initialState: { value: 0 },
  reducers: { increment: (state) => { state.value += 1; } }
});

API (/api)

HTTP client utilities with retry, caching, and rate limiting.

import { createClient, withRetry, ResponseCache } from '@missionfabric-js/enzyme-typescript/api';

const client = createClient({ baseURL: 'https://api.example.com' });
const response = await client.get('/users').json();

Testing (/testing)

Testing utilities including factories, mocks, and assertions.

import { defineFactory, createMock, assertEquals } from '@missionfabric-js/enzyme-typescript/testing';

const userFactory = defineFactory({ id: () => randomUUID(), name: 'Test' });
const users = userFactory.buildList(5);

Utils (/utils)

General utility functions for strings, objects, arrays, and more.

import { camelCase, deepClone, debounce, formatDate } from '@missionfabric-js/enzyme-typescript/utils';

const text = camelCase('hello-world'); // 'helloWorld'

Requirements

  • Node.js >= 20.0.0
  • TypeScript >= 5.0.0

License

MIT