https://github.com/faker-javascript/email
Email package provides functionality to generate a fake email value.
https://github.com/faker-javascript/email
Last synced: 3 months ago
JSON representation
Email package provides functionality to generate a fake email value.
- Host: GitHub
- URL: https://github.com/faker-javascript/email
- Owner: faker-javascript
- License: mit
- Created: 2022-01-14T07:12:34.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-03-13T05:54:59.000Z (over 3 years ago)
- Last Synced: 2025-03-17T22:55:12.693Z (3 months ago)
- Language: JavaScript
- Size: 9.77 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
Email package provides functionality to generate a fake email value.
## Install
npm
```
npm install @fakerjs/email --save-dev
```yarn
```
yarn add @fakerjs/email -D
```## Usage
```js
import email from '@fakerjs/email';email();
//=> [email protected]email({domain: 'example.com'})
//=> [email protected]
```## Tests
Run tests
```
npm run test
```## License
[The MIT License (MIT)](https://github.com/faker-javascript/email/blob/master/LICENSE)
Copyright (c) [Sergey Romanenko](https://github.com/Awilum)