ngneat / falso
- четверг, 20 января 2022 г. в 00:34:45
All the Fake Data for All Your Real Needs 🙂
All the Fake Data for All Your Real Needs
🙂
Create massive amounts of fake data in the browser and NodeJS. Tree Shakeable & Fully Typed.
npm i @ngneat/falso
yarn add @ngneat/falso
import { randEmail, randFullName } from '@ngneat/falso';
const user = { email: randEmail(), name: randFullName() };
const emails = randEmail({ length: 10 });
You can set your own seed if you want consistent results:
import { rand, seed } from '@ngneat/falso';
seed('some-constant-seed');
// Always returns 2
rand([1, 2, 3, 4, 5]);
// Reset random seed
seed();
npm run c
and choose the right answers