Load testing a database or a complex UI often requires more than just a few dozen records. If you need to see how your app handles 100k or 1 million rows, most free mock data tools will cap you at 1,000 or 5,000 before asking for a credit card.
I found a workaround using JSONForge. Because the tool generates the data on the client-side (using your local browser's resources), it doesn't have the same cloud overhead as other services. This allows it to support generation of up to 1 million records for free. Itβs been great for testing how my PostgreSQL indexes handle larger datasets and checking if my React list components start lagging under heavy load. If you're doing any kind of scale testing, give this a tryβitβs much faster than writing custom seeding scripts from scratch.
Top comments (0)