data variety
generates uuids, emails, names, addresses, and phone numbers. covers standard database fields.
generate structured random data for testing.
randumb creates realistic mock data for your applications. it generates standard formats like uuids, emails, phone numbers, and names in bulk.
randumb is a test data generator available as a cli and web tool. it produces realistic, formatted data including names, addresses, emails, and primary keys. you can request specific schemas and output formats like csv or json.
manually typing test data into your forms or writing custom scripts to populate a staging database is tedious. production data should never be used for local testing due to privacy laws. randumb generates safe, structural equivalents in milliseconds.
frontend developers use it to populate ui mockups, and backend engineers use it to stress-test database queries. it generates data without exhausting system memory.
generates uuids, emails, names, addresses, and phone numbers. covers standard database fields.
create thousands of records in milliseconds. optimized for speed and low memory usage.
output data as csv, json, or sql insert statements. ready to be loaded into your database.
supply a seed value to generate the exact same fake data every time. useful for reproducible tests.
use the web interface for quick mockups or the cli for automated database seeding scripts.
generate five random user records in json format.
// input
randumb generate users --count 5 --format json
// output
[{"id": "a1b2", "name": "alice", "email": "alice@example.com"},
{"id": "c3d4", "name": "bob", "email": "bob@example.com"}]
it generated structured mock data without querying a real database.
using real user data in local development environments is a massive security risk and usually illegal. but testing a complex ui with the word 'test' in every field makes it impossible to spot layout bugs.
we built randumb because existing fake data generators were bloated. we just wanted a standard cli command that spits out a thousand valid email addresses instantly.
yes. you can pass a json schema file to the cli, and it will generate records that match your specific fields.
they are structurally valid but use standard example domains. they will pass regex checks but will not deliver actual mail.
it can generate about a hundred thousand basic records per second on a modern machine.
no. it generates flat records. if you need foreign key relationships, you will have to map them yourself.
// stop using production data on your laptop.