random-fakedata.js
A package to generate random data
A package to generate random fake data
npm install --save random-fakedata
Usage
const user = require('random-fakedata/src/user')
user(1 , (data) => {
console.log(data) // get a random user data
})
Get a random address
const address = require('random-fakedata/src/address')
address(1 , (data) => {
console.log(data) // get a random address
})
Data return count
The default data count is 1. If you want more than 1 return data use like this
const color = require('random-fakedata/src/color')
color(4 , (data) => { // the first number parameter representing how much data should return
console.log(data)
})
Available random data's
- Address
- App
- Appliance
- Bank
- Beer
- Card
- Code
- Color
- Commerce
- Company
- Computer
- Crypto Coin
- Device
- Food
- Internet Stuff
- Lorem Flicker
- Lorem Ipsum
- Nation
- Phone Number
- Stripe
- User
- Vehicle
- Name
YO. If you find this repo useful please give me a star.
License
The MIT License (MIT) Copyright (c) 2022 Athul Vinod devathulvinod@gmail.com