# multi-users-generator

> package that allow developer to generate more than 100 fake users within a line of code.

Latest version **1.0.2** (published 2018-10-17) · ISC license · 0 weekly downloads

## Install

```sh
npm install multi-users-generator
pnpm add multi-users-generator
yarn add multi-users-generator
bun add multi-users-generator
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.2 |
| Published | 2018-10-17 |
| First published | 2018-10-15 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 3.2 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Yves Songolo |
| Maintainers | yveslym |
| Keywords | fake, user, testing |

## Links

- npm: https://www.npmjs.com/package/multi-users-generator
- Repository: https://github.com/yveslym/fake-user
- Issues: https://github.com/yveslym/fake-user/issues
- npm.io page: https://npm.io/package/multi-users-generator

## Dependencies (1)

- [faker](https://npm.io/package/faker.md) ^4.1.0

## Alternatives

- [duck](https://npm.io/package/duck.md) — 4.2M weekly downloads
- [ava](https://npm.io/package/ava.md) — 560.2K weekly downloads
- [storybook-addon-module-mock](https://npm.io/package/storybook-addon-module-mock.md) — 71.7K weekly downloads
- [vest](https://npm.io/package/vest.md) — 50.1K weekly downloads
- [@ethereum-waffle/mock-contract](https://npm.io/package/@ethereum-waffle/mock-contract.md) — 40.0K weekly downloads

## Recent versions

- 1.0.2 (latest) — 2018-10-17
- 1.0.1 — 2018-10-15
- 1.0.0 — 2018-10-15

## README

# MULTI USERS GENERATOR

multi users generator is a small package  that help you to generate the more than thousand user within a line of code for your testing.
multi users generator use faker to generate the fake data

### Import npm

`npm install multi-users-generator --save
`

### Usage

```
let users = require('multi-users-generator');
multi = users.multiUsers(300);
```
this line will return 300 users with address

Data:
```
[
 User {
    firstName: 'Holden',
    lastName: 'Ebert',
    username: 'HoldenEbert',
    email: 'Savanah82@yahoo.com',
    imageUrl: 'http://lorempixel.com/640/480/people',
    address:
     Address {
       street: '34465 Kovacek Spring',
       city: 'Lake Neil',
       state: 'New York' 
           } 
       } 
...
]
```

---
_Source: https://npm.io/package/multi-users-generator · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
