purescript-email-address/qed-mail/README.md
2024-02-07 15:23:45 -06:00

25 lines
391 B
Markdown

<br />
<h1 align="center">qed-mail</h1>
<h4 align="center">A NodeJS library for checking if an email address exists without sending any email.</h4>
<br /><br />
## Get Started
### Install
Use `npm` to install this package.
```bash
npm install --save-dev qed-mail
```
### Example
```ts
import qedmail from "qed-mail";
qedmail.checkEmail("example@example.com").then(console.log);
```