An open API service indexing awesome lists of open source software.

https://github.com/pymarcus/message-queue

a very, very simplified alternative to Kafka. For local use.
https://github.com/pymarcus/message-queue

golang message-broker message-queue websocket

Last synced: 4 months ago
JSON representation

a very, very simplified alternative to Kafka. For local use.

Awesome Lists containing this project

README

          

# message-queue

### RUN:

make

### Use:

* Publisher

curl -X POST http://localhost:7777/publish/topicname --data-binary 'some message'


* Consumer (websocket)

ws://localhost:6666


json body:


{
"topic":"vanilla",
"data":"foda-se"
}

### Publish:

![image](https://github.com/PyMarcus/message-queue/assets/88283829/5a705e66-4f1f-4c9f-9f68-59648c100a8f)

### Consumer:

![image](https://github.com/PyMarcus/message-queue/assets/88283829/da43b5f2-ac2f-4407-b51c-1d2fb82da488)