# nodejs-email-validation

> node package to validate email

Latest version **1.1.1** (published 2021-11-05) · MIT license · 0 weekly downloads

## Install

```sh
npm install nodejs-email-validation
pnpm add nodejs-email-validation
yarn add nodejs-email-validation
bun add nodejs-email-validation
```

## Health

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

Positive: has types; no vulnerabilities; high quality score.

Warnings: low downloads; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.1.1 |
| Published | 2021-11-05 |
| First published | 2021-11-04 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 4.6 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | Kamil Pawlaczyk |
| Maintainers | agli-dev |
| Keywords | mail, email, validation, validator |

## Links

- npm: https://www.npmjs.com/package/nodejs-email-validation
- Repository: https://github.com/volt1c/nodejs-email-validation
- Homepage: https://github.com/volt1c/nodejs-email-validation#readme
- Issues: https://github.com/volt1c/nodejs-email-validation/issues
- npm.io page: https://npm.io/package/nodejs-email-validation

## Alternatives

- [@expo/fingerprint](https://npm.io/package/@expo/fingerprint.md) — 6.2M weekly downloads
- [@azure/monitor-opentelemetry-exporter](https://npm.io/package/@azure/monitor-opentelemetry-exporter.md) — 850.0K weekly downloads
- [@azure/monitor-opentelemetry](https://npm.io/package/@azure/monitor-opentelemetry.md) — 624.0K weekly downloads
- [@posthog/ai](https://npm.io/package/@posthog/ai.md) — 423.3K weekly downloads
- [fakefilter](https://npm.io/package/fakefilter.md) — 63.9K weekly downloads

## Recent versions

- 1.1.1 (latest) — 2021-11-05
- 1.1.0 — 2021-11-04
- 1.0.2 — 2021-11-04
- 1.0.1 — 2021-11-04
- 1.0.0 — 2021-11-04

## README

# nodejs-email-validation

Nodejs-email-validation is a zero-dependency module that validate emils.

## Install

```bash
npm install nodejs-email-validation
yarn add nodejs-email-validation
```

## Usage

#### Javascript

```js
const emailValidation = require('nodejs-email-validation')

emailValidation.validate('example@gmail.com') // true
```

#### Typescript

```ts
import * as emailValidation from 'nodejs-email-validation'

emailValidation.validate('example@gmail.com') // true
```

## Development

### Testing

#### Install required packages

```
$ sudo npm -g install mocha
```

#### Run tests

```
$ npm test
```

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