
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
@herb-ert/mockkitjs
Advanced tools
Mockkit is a deterministic mock data generator — a small, fast utility to generate predictable, structured fake data for testing, seeding, prototyping, and demos.
Mockkit.js is a deterministic mock data generator — a small, fast utility to generate predictable, structured fake data for testing, seeding, prototyping, and demos.
⚡ Powered by a seedable pseudo-random generator for repeatable results.
npm install @herb-ert/mockkitjs
import { seed } from '@herb-ert/mockkitjs';
import { faker } from '@herb-ert/mockkitjs';
// Set a seed for deterministic results
seed(43);
// Use faker modules
console.log(faker.number.int(10, 50)); // Same number every time with same seed
console.log(faker.number.float(0, 1)); // e.g., 0.35
console.log(faker.number.dice(20)); // Roll a D20
seed(number)Sets the global seed for deterministic randomness.
faker.number.int(min, max)Returns a random integer between min and max (inclusive).
faker.number.float(min, max, decimals)Returns a random float with specified decimal precision.
faker.number.dice(sides)Simulates rolling an N-sided die.
More modules coming soon — names, dates, strings, arrays, and more!
Mockkit uses a seedable PRNG to give you consistent data across test runs or rebuilds.
Perfect for unit tests, snapshot testing, or consistent seeding during development.
MIT — © herb-ert
See CHANGELOG.md for version history and release notes.
FAQs
Mockkit is a deterministic mock data generator — a small, fast utility to generate predictable, structured fake data for testing, seeding, prototyping, and demos.
The npm package @herb-ert/mockkitjs receives a total of 1 weekly downloads. As such, @herb-ert/mockkitjs popularity was classified as not popular.
We found that @herb-ert/mockkitjs demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.