Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bjarneo/evaas
Email Validation as a Service - This is based on the RFC 5322 Official Standard.
https://github.com/bjarneo/evaas
Last synced: 3 days ago
JSON representation
Email Validation as a Service - This is based on the RFC 5322 Official Standard.
- Host: GitHub
- URL: https://github.com/bjarneo/evaas
- Owner: bjarneo
- Created: 2024-05-09T19:41:05.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-05-10T07:29:28.000Z (6 months ago)
- Last Synced: 2024-05-10T21:23:27.786Z (6 months ago)
- Language: TypeScript
- Size: 24.4 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Email Validator As A Service [EVaaS]
This is based on the RFC 5322 Official Standard. This service is made for fun based on this tweet that is using the perl RFC5322 email regex: https://twitter.com/mSykeCodes/status/1788446683921285238
## Usage
```bash
# Using CURL
curl -X POST -H "Content-Type: application/json" -d '{"email":"[email protected]"}' https://evaas.dothash.workers.dev
{"message":"RFC 5322 - Valid email address","status":1}# Using HTTPie
http -b https://evaas.dothash.workers.dev [email protected]
{
"message": "RFC 5322 - Valid email address",
"status": 1
}
```## Development
```
npm install
npm run dev
```## Deployment to Cloudflare Workers
```
npm run deploy
```## Run the test.http file
```
httpyac test/local.http
```## Disclaimer
This is not a serious project.