Fake data generator for js develop.
npm install data-seed
const {util, seed} = require('data-seed');
// specific seed or util
const {
util: {
random
},
seed: {
ip4
}
} = require('data-seed');
seed.ip4(); // 23.4.126.0
ip4(); // 1.1.1.123
util.deep
accepts a callback function which will return data.
The callback function accepts 4 arguments:
DEEP
: identify data loopDONE
: returnDONE
will stop looplevel
: record the deep level of dataisFirst
: whether first data
Create a tree nodes:
const {util: {deep}} = require('data-seed');
let data = deep((DEEP, DONE, level, isFirst) => {
return level < 2 ? {
name: 'lxjwlt',
nodes: DEEP
} : DONE;
});
/*
data:
{
name: 'lxjwlt',
nodes: {
name: 'lxjwlt'
}
}
*/
util.random.float([min = 0, max = 1])
: create a float number randomly.util.random.int([min=0, max=1])
: create a integer number randomly.util.random.letter([min='a', max='z'])
: create a letter randomly.util.random.array(arr)
: return a item within the array randomly.util.random.one([...])
: return a item from arguments randomly.
Callback function return element of array:
const {util: {arr}} = require('data-seed');
arr(2, () => 10); // [10, 10]
arr(2, 10); // [10, 10]
seed.color()
: return a safe web color randomly.seed.date([start='1970/1/1', end=Date.now()])
: return timestamp randomly.seed.date.toSecond([start='1970/1/1', end=Date.now()])
: return timestamp in seconds.seed.date.format(format[, start, end])
: return formatted date time. see momentJS#format
seed.email()
: return email randomly.seed.hexColor()
: return color hex value randomly.seed.hexColor.short()
: return short color hex value randomly.
seed.img()
: return a img url randomly.seed.img.base64()
: return a img base64 string randomly.
seed.ip4()
: return ip4 address randomly.seed.ip4.cidr()
: return ip4 cidr address, like 1.1.1.1/24
seed.isbn(version)
: return an isbn string randomly. (version 10 or 13)seed.lorem([min=1, max=5])
: return lorem text randomly.seed.mac()
: return mac address randomly.seed.paragraph([min=1, max=10])
: return paragraph text randomly.seed.url([options = {protocol:true, host: true, path: true, query: true}])
: return a url randomly.seed.uuid()
: return uuid.seed.word([min=1, max=10])
: return a word randomly.seed.xss()
: return xss script, eg.<script>alert("xss");</script>
seed.xss.noStrict()
: return html text, eg.<a href="javascript:void(0)">click me!</a>