amock
v0.9.1
Published
Simplest data mock generator evaaaah.
Downloads
2
Readme
amock by @michalbe
Simplest data mock generator evaaaah.
// amock.js
var amock = require('amock');
amock('cities', {
id: "id",
name: "names:1"
});
amock('products', {
id: "id",
date_of_birth: "date",
name: "words:1",
description: "sentences:5",
price: "random-number:9-100",
image: "image:500/500",
language: "random:['en-US', 'pl', 'de', 'fr']"
});
amock('movies', {
id: "id",
title: "names:1"
director: { // nested objects allowed since amock0.9
name: "names:2",
age: "random-numbers:20-65"
}
});
amock.get(); // TODO: concatenate the data, now it returns first data type only
amock.get('products', 100) // array of 100 products
Supported data types:
'id' // autoincremented number, no argument
'date' // random date from 1970-01-01 till now
'words' // string, number of words as an argument
'names' // capitalized string, number of names as an argument
'sentences' // full sentence, number of sentences as an argument
'random-number' // random number, range as an argument (min-max)
'image' // link to the random image, resolution as an argument (width/height)
'sequence:ARRAY' // each element will contain element of the array, so for
// `code: 'sequence:[1,2,3]'`` first element will contain 1,
// second 2, third 3, fourth 1, fifth 2, etc...
'random:ARRAY' // each element will contain random element of the array
Usage
npm i amock -g
amock path-to-file-with-mock-description.json [number of elements, optional] > output