Zum Inhalt springen

Testdaten-Generator

Erzeuge gefälschte Nutzerdaten - Name, E-Mail, Telefon, Adresse - als JSON oder CSV.

Läuft in deinem Browser

Anzahl und Felder wählen, JSON-, CSV- oder SQL-INSERT-Block zurückbekommen. Namen, E-Mails und Adressen aus einem mitgelieferten Datensatz zufällig kombiniert.

So funktioniert's

  1. Pick count and fields

    Number of rows, and which fields to include.

  2. Pick the output format

    JSON array, CSV with header, or SQL INSERT statements.

  3. Copy or download

    Hit Copy to grab the string, or paste it into your seeding script.

Was ist das?

A mock data generator builds realistic-looking but synthetic records for seeding databases, populating UI mock-ups or stress-testing API endpoints. The fields are randomly combined from a small bundled dataset - names, surnames, cities, streets, companies, job titles - so output is unique each run and free of any real personal data.

Wann verwenden

Seeding a development database; building a Figma-style mock-up where '50 user rows' is more convincing than 'Lorem Ipsum'; load-testing a search or filter UI; populating a CSV import flow's sample file. Avoid using it for anything customer-facing or for analytics; the data is too synthetic to behave like real users.

Häufige Fehler

Using the generated emails to test real email-sending - example.com bounces, which is correct behaviour but breaks tests that assume delivery. Forgetting to set a seed when reproducibility matters - this generator is random, so two runs produce different output. And generating gigabytes worth of records in the browser when you really want a server-side faker library; this tool tops out around 10,000 rows.

FAQ

Are the emails / phones real?
No. Emails use the example.com / example.org domains reserved by RFC 2606 for this purpose. Phone numbers use the 555 prefix (US TV / movie convention for non-real numbers) where possible.
How big can I generate?
Up to 10,000 records per click - the browser can comfortably hold that as a string. For larger seeds you usually want a server-side generator (faker, mimesis) anyway.

Mehr in dieser Kategorie