An EHLO server written in Node.js that echoes messages.
The EHLO server is a simple server implemented in Node.js that demonstrates the EHLO protocol by echoing messages back to the client.
- Receives EHLO messages via GET and POST requests and echoes them back as JSON responses.
- Lightweight and easy to use.
- Start the server using Docker:
docker run -p 3000:3000 arshinalbab/ehlo
- Send EHLO requests:
HTTP: Make a POST request to http://localhost:3000/ehlo with the following JSON payload:
{
"message": "Your message here"
}