Connect to simple-chat

This is an example of a simple chat application using pipe.pico.sh. Pipe is an event-driven platform for doing asynchronous pub/sub. This demo is of course insecure and should not be used in production. It is based off the amazing work at patchbay.pub. The service uses SSH as the underlying transport and allows both private and public access.

Access this chat from your terminal with:

ssh pipe.pico.sh pipe -p pubchat

Send a message by typing

data: {"author":"Nickname","text":"hi"}

And pressing enter twice. You can also do a one liner like so:

printf 'data: {"author":"Nickname","text":"hi"}\n\n' | ssh pipe.pico.sh pub -p pubchat