GithubHelp home page GithubHelp logo

recursivevoid / websocketmqttbridge Goto Github PK

View Code? Open in Web Editor NEW
2.0 1.0 0.0 68 KB

WebsocketMQTTBridge is state of art, straightforward tool to create connection and relay MQTT broker communication through Websocket.

License: MIT License

C# 100.00%
bridge bridge-pattern csharp mqtt mqtt-broker mqtt-client mqtt-protocol mqtt-server websocket websocket-client

websocketmqttbridge's Introduction

WebsocketMQTTBridge

License Release Dependencies screenshot of runtime console

About

WebsocketMQTTBridge is state of art, straightforward tool to create connection and relay MQTT broker communication through Websocket.

Why Websocket - MQTT Bridge?

One day at work a regular everyday normal project, created a regular everday normal problem which needed a regular everyday normal solution. And the solution was the blazing fast WebsocketMQTTBridge.

What's in the box

MQTT broker and WS server support.

What's missing & TODOs

  • Supporting MQTTS brokers and WSS server.
  • Configurating the websocket server through json and console application.

Default server parameters

Default websocket server is created on: ws://127.0.0.1:80
IP: 127.0.0.1 PORT: 80 Server parameters can be changed in source code, under WebsocketServer.cs

Commands

Commands are in Json format. In given examples, the parameters are for demonstrating the data type only.

Connection request to MQTT broker

{ 
  "command": "connect",
  "ip": "127.0.0.1",
  "port": 10,
  "clientId": "1"
}

Subscription/Unsubscribtion Request

The command subscribe works in same structure with unsubscribe.

{
  "command": "subscribe", 
  "topics:" ["topic1", "topic2"]
}
{
  "command": "unsubscribe", 
  "topics:" ["topic1", "topic2"]
}

Publishing message to given topic

{
  "command": "publish",
  "topic": "topic1",
  "message": { "customParameter": "message is a json object" }
}

Dependencies used for the project

websocketmqttbridge's People

Stargazers

 avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.