nodemailer-stress-test

To install dependencies:

bun install

To run:

bun run index.ts

This project was created using bun init in bun v1.0.25. Bun is a fast all-in-one JavaScript runtime.

Docker image

docker build -t marianobe/nodemailer-stress-test .
docker push marianobe/nodemailer-stress-test

Docker usage example:

$ docker run -e SENDERS=14 -e INTERVAL=10  -e PARAGRAPHS=100  -e HOST=host.docker.internal -e PORT=1025 marianobe/nodemailer-stress-test

Mailpit

$ docker run -p 8025:8025 \
-p 1025:1025 \
axllent/mailpit

Custom Server

$ docker run -p 1025:1025 marianobe/nodemailer-stress-test /root/.bun/bin/bun run server.ts

Install Docker in Debian

apt update && apt install -y apt-transport-https ca-certificates curl software-properties-common lsb-release gnupg
curl -fsSL https://download.docker.com/linux/debian/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/debian $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
apt update && apt install -y docker-ce docker-ce-cli containerd.io