datamaker icon indicating copy to clipboard operation
datamaker copied to clipboard

Data generator command-line tool and library. Create JSON, CSV, XML data from templates.

Results 4 datamaker issues
Sort by recently updated
recently updated
newest added

Allows to Save XML and JSON Output as Files. JSON has a special option to pull a property as filename.

Some option to save the json/xml-Files as either: * Single file (json > Array of objects, xml > rootNode) * Multiple Files (one file per iteration) Specify one tag as...

Something like {{loop 5}} ... e.g. ```json { "id":"{{uuidv4}}", "values: [ {{loop 5}} { "value":"{{float}}", "key":"{{loop index}}" } {{loop end}} ] } ``` result: ```json { "id":"12310723-01d3-4844-a909-7db67d1528eb", "values: [ {...