Minimal NATS CLI client
This repository has been archived on 2023-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
2018-01-16 15:25:12 -05:00
nats-pub add "tlsverify" option 2018-01-16 14:21:35 -05:00
nats-sub add "tlsverify" option 2018-01-16 14:21:35 -05:00
.gitignore initial commit 2017-11-29 14:37:37 -05:00
nats.go whoops 2018-01-16 15:25:12 -05:00
README.md add "tlsverify" option 2018-01-16 14:21:35 -05:00

NATS CLI Client

Just a really, really simple NATS CLI client. This is primarily intended for my own personal use. I needed a client that I could use for simple tasks here and there. I didn't see an existing one (with a minimum of dependencies) that supported TLS connections to the NATS server, which I need.

Includes:

nats-pub [-s server] [-tls] [-tlscert CERT_FILE] [-tlskey KEY_FILE] [-tlscacert CA_FILE] [-tlsverify] <subject> <message>

nats-sub [-s server] [-ts] [-tls] [-tlscert CERT_FILE] [-tlskey KEY_FILE] [-tlscacert CA_FILE] [-tlsverify] <subject>

I will add more support for extra features, etc. later if/when I need them.