guble-cli

command
v0.0.0-...-83e654d Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 31, 2017 License: MIT Imports: 10 Imported by: 0

README

The guble command line client

This is the command line client for the guble messaging server. It is intended for demonstration and debugging use.

Build Status

Starting the client with docker

The guble docker image has the command line client included. You can execute it within a running golang container and connect to the server.

docker run -d --name guble smancke/guble
docker exec -it guble /go/bin/guble-cli

Building from source

	go get github.com/smancke/guble/guble-cli
	bin/guble-cli

Start options

usage: guble-cli [--exit] [--verbose] [--url URL] [--user USER] [--log-info] [--log-debug] [COMMANDS [COMMANDS ...]]

positional arguments:
  commands

options:
  --exit, -x              Exit after sending the commands
  --verbose, -v           Display verbose server communication
  --url URL               The websocket url to connect (ws://localhost:8080/stream/)
  --user USER             The user name to connect with (guble-cli)
  --log-info              Log on INFO level (false)
  --log-debug             Log on DEBUG level (false)

Commands in the client

In the running client, you can use the commands from the websocket api, e.g:

?           # prints some usage info
+ /foo/bar  # subscribe to the topic /foo/bar
+ /foo 0    # read from message 0 and subscribe to the topic /foo
+ /foo 0 5  # read messages 0-5 from /foo
+ /foo -5   # read the last 5 messages and subscribe to the topic /foo
- /foo      # cancel the subscription for /foo

> /foo         # send a message to /foo
> /foo/bar 42  # send a message to /foo/bar with publisherid 42

Documentation

The Go Gopher

There is no documentation for this package.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL