https://github.com/mfbx9da4/deep-email-validator-express
Deep Email Validation Endpoint
https://github.com/mfbx9da4/deep-email-validator-express
email-validation
Last synced: about 2 months ago
JSON representation
Deep Email Validation Endpoint
- Host: GitHub
- URL: https://github.com/mfbx9da4/deep-email-validator-express
- Owner: mfbx9da4
- License: mit
- Created: 2020-03-09T11:24:27.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-05T09:30:21.000Z (over 2 years ago)
- Last Synced: 2025-01-26T17:45:48.205Z (4 months ago)
- Topics: email-validation
- Language: TypeScript
- Homepage: https://deep-email-validator.herokuapp.com/
- Size: 851 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Deep Email Validation Endpoint

## Demo
https://deep-email-validator.herokuapp.com/
## Docker Hub
https://hub.docker.com/repository/docker/mfbx9da4/validate-email-endpoint
## Frontend Demo
https://codesandbox.io/s/formik-asynchronous-email-validation-example-tl8l8
## Getting Started
```
yarn
yarn dev
```## Build
```
yarn build
yarn start
```## Deploy Docker image
```
docker login
docker build . -t mfbx9da4/validate-email-endpoint# Push to docker hub
docker push mfbx9da4/validate-email-endpoint
docker run -t -p 8080:8080 -e PORT=8080 mfbx9da4/validate-email-endpoint
heroku container:login# Push to heroku repo
heroku container:push web
heroku container:release web
heroku open
```