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

@ir-kit/openapi-ts-faker

v0.1.0

Published

Faker.js plugin for @hey-api/openapi-ts - Generate realistic mock data factories from OpenAPI specs

Readme

@ir-kit/openapi-ts-faker

Faker.js mock-data factories from an OpenAPI spec. Plugin for @hey-api/openapi-ts.

Install

npm install -D @ir-kit/openapi-ts-faker @hey-api/openapi-ts
npm install @faker-js/faker

Use

import { defineConfig } from "@hey-api/openapi-ts";
import { defineConfig as defineFakerConfig } from "@ir-kit/openapi-ts-faker";

export default defineConfig({
  input: "openapi.yaml",
  output: { path: "./generated" },
  plugins: [
    "@hey-api/typescript",
    defineFakerConfig({
      fieldNameHints: { email: "internet.email", firstName: "person.firstName" },
    }),
  ],
});

Resolution order (per property)

  1. OpenAPI formatformatMapping
  2. fieldNameHints exact match (keys are case/separator-insensitive: email, Email, user_email all normalize the same)
  3. enumhelpers.arrayElement([...])
  4. Type fallback (integernumber.int, etc.)

No default field hints. formatMapping ships with sensible defaults you can override.

Mapping

| OpenAPI | Output | | --- | --- | | type: object | () => ({ ...props }) | | allOf | merged object | | oneOf / anyOf | helpers.arrayElement([() => v1, () => v2])() | | enum | helpers.arrayElement([...]) | | type: array | helpers.multiple(() => item, { count: { min, max } }) | | $ref | call to sibling factory: createMockX() | | cyclic $ref | null (broken at codegen to avoid runtime recursion) |

Type safety

fieldNameHints and formatMapping values are typed against FakerMethodPath — every Faker method callable with zero args. Typos and arg-required methods (e.g. helpers.arrayElement) fail at compile time.

Options

defineFakerConfig({
  output: "factories.gen",          // filename
  fieldNameHints: {},               // field → faker method
  formatMapping: {},                // format → faker method (merged with defaults)
  respectConstraints: true,         // honor minimum/maximum, minLength/maxLength, minItems/maxItems
  generateBatchCreators: true,      // emit createMockXs(count?)
  defaultBatchCount: 10,            // default count when caller omits arg
  include: ["User", "Order"],       // only these schemas
  exclude: ["Internal"],            // skip these schemas
  filter: (s) => Boolean(s.title),  // custom predicate
});

When respectConstraints is on:

  • { minimum: 18, maximum: 99 }number.int({ min: 18, max: 99 })
  • { maxLength: 8 }string.alpha({ length: 8 })
  • { minItems: 2, maxItems: 5 }helpers.multiple(..., { count: { min: 2, max: 5 } })

License

MIT