Connection String Tester
A CLI tool to test connectivity and latency for Redis, AMQP, and PostgreSQL connections.
Installation
npm install -g connection-string-test
Or use npx:
npx connection-string-test <connection-string>
Usage
Test a Redis connection:
connection-tester redis://localhost:6379
Test an AMQP connection:
connection-tester amqp://localhost:5672
Test a PostgreSQL connection:
connection-tester postgres://localhost:5432/mydb
Supported Protocols
- Redis:
redis://, rediss://
- AMQP:
amqp://, amqps://
- PostgreSQL:
postgres://, postgresql://