Cheat sheets are available from the CLI directly:
nats cheatTry out the following commands:
nats cheat contexts
nats cheat pub- Create a non-default context:
nats context add development --server nats.dev.example.net:4222- Create a new default context:
nats context add development --server nats.dev.example.net:4222 --select- Update (you can choose the editor of your choice)
EDITOR=vim nats context edit development- List contexts
nats context ls
- View context
nats context info development- View context in JSON format:
nats context info development --json- Validate all connections are valid and that connections can be established:
nats context validate --connect- Select a new default context:
nats context select development- Publish using the default context:
nats pub subject bodyWhere
subjectis the message subject, and `body`` is the message body
- Publish using a different context than the default context:
nats pub --context development subject body- To publish 100 messages with a random body between 100 and 1000 characters:
nats pub destination.subject "{{ Random 100 1000 }}" -H Count:{{ Count }} --count 100- To publish messages from STDIN:
echo "hello world" | nats pub destination.subject- To send a request and wait for response:
nats req subject requestWhere
subjectis the subject where request will be sent, andrequestis the request payload.
- To request a response from a server and show just the raw result:
nats request destination.subject "hello world" -H "Content-type:text/plain" --raw- To set up a responder that runs an external command with the 3rd subject token as argument:
nats reply "service.requests.>" --command "service.sh {{2}}"- To set up basic responder:
nats reply service.requests "Message {{Count}} @ {{Time}}"- To setup an echo responder:
nats reply service.requests --echo --sleep 10
Thanks Guillaume 👍