{"id":21927994,"url":"https://github.com/adrianromero/hellobridge","last_synced_at":"2026-05-06T10:33:41.617Z","repository":{"id":150763728,"uuid":"139180559","full_name":"adrianromero/hellobridge","owner":"adrianromero","description":"Simple HTTP to MQTT bridge","archived":false,"fork":false,"pushed_at":"2019-03-06T20:29:14.000Z","size":130,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-28T16:41:40.444Z","etag":null,"topics":["bridge","http","mqtt"],"latest_commit_sha":null,"homepage":null,"language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/adrianromero.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-06-29T18:03:11.000Z","updated_at":"2019-03-06T20:28:32.000Z","dependencies_parsed_at":null,"dependency_job_id":"9bccec1a-53b5-4b89-b3db-e90003c972e8","html_url":"https://github.com/adrianromero/hellobridge","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/adrianromero/hellobridge","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adrianromero%2Fhellobridge","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adrianromero%2Fhellobridge/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adrianromero%2Fhellobridge/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adrianromero%2Fhellobridge/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/adrianromero","download_url":"https://codeload.github.com/adrianromero/hellobridge/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adrianromero%2Fhellobridge/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32689171,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-06T08:33:17.875Z","status":"ssl_error","status_checked_at":"2026-05-06T08:33:17.221Z","response_time":117,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bridge","http","mqtt"],"created_at":"2024-11-28T22:19:45.231Z","updated_at":"2026-05-06T10:33:41.600Z","avatar_url":"https://github.com/adrianromero.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"HelloBridge  [![Release](https://jitpack.io/v/adrianromero/hellobridge.svg)](https://jitpack.io/#adrianromero/hellobridge)\n===========\n\nHelloBridge is a Simple HTTP to MQTT bridge.\n\nCompile\n=======\n\nClone the repository, and execute:\n\n```\n  ./gradlew installDist\n```\n\nThen look into `build/install` and you will find a folder named `hellobridge` containing the compiled artifacts.\n\nConfiguration\n=============\n\nThe configuration file by default is named in `hellobridge.properties` and located in the user home directory.\n\nThe configuration properties are:\n\n* ''web.port'': The port HelloBridge listen for http requests to publish messages to MQTT topics. Default 8080.\n* ''web.token'': Application token used to publish messates.\n* ''mqtt.host'': Host of the MQTT broker. Default localhost.\n* ''mqtt.port'': Port of the MQTT broker. Default 1883.\n* ''mqtt.websockets'': Boolean value that indicates to connect using the websockets or the tcp protocol. Default false.\n* ''mqtt.username'':\n* ''mqtt.password'':\n* ''mqtt.clientid'': If empty a random client id is generated.\n* ''mqtt.ssl'': Boolean value that indicates to connect to the MQTT broker using an SSL connection. Default false.\n* ''mqtt.connectiontimeout'': Sets the connection timeout value. This value, measured in seconds, defines the maximum time interval the client will wait for the network connection to the MQTT server to be established. A value of 0 disables timeout. Default 30 seconds.\n* ''mqtt.keealiveinterval'': Sets the \"keep alive\" interval. This value, measured in seconds, defines the maximum time interval between messages sent or received. Default 60 seconds.\n* ''mqtt.version'': Sets the MQTT version. A value of 3 stands for 3.1, a value of 4 stands for 3.1.1. Default  3.1.1.\n* ''mqtt.maxinflight'': Sets the \"max inflight\". Increase this value in a high traffic environment. Default 10.\n\nI case of setting ''mqtt.ssl'' property to ''true'' configure SSL using the following properties:\n* ''mqtt.protocol''. Supported SSL prococols: Default TLSv1.2.\n* ''mqtt.keystore''.  JKS key store file path. \n* ''mqtt.keystorepassword''. Key store file password.\n* ''mqtt.truststore''.  JKS trust store file path. \n* ''mqtt.truststorepassword''. Trust store file password.\n\n\nExample configuration file\n==========================\n\n```\nmqtt.host=localhost\nmqtt.username=MYUSER\nmqtt.password=MYPASSWORD\n\nmqtt.topic.espurna04=espurna04/relay/0\nmqtt.topic.espurna04.qos=1\nmqtt.topic.espurna05=espurna05/relay/0\nmqtt.topic.espurna05.qos=1\n\nweb.port=8080\nweb.token=R5mERHYvEDfghJGzFZRwzaeT\n\nwebhook.url=http://localhost/{{subscription}}/with/key\n```\n\n\nPublication and Subscription\n============================\n\nTo publish messages to the configued MQTT broker use the following HTTP request\n\n```\ncurl -H \"Content-Type: application/json\" -H \"Authorization: Basic token\" -X POST  -d '{\"message\": \"\"}' http://host:port\n```\n\nThe properties in the JSON are\nmessage\nqos\nretained\n\nExamples\n\nTo subscribe messages \n\n\n\n\n\nLicense\n=======\n\nHelloBridge is licensed under the GNU General Public License, Version 3, 29 June 2007\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadrianromero%2Fhellobridge","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fadrianromero%2Fhellobridge","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadrianromero%2Fhellobridge/lists"}