{"id":16167122,"url":"https://github.com/ethymoney/kaluma-mqtt","last_synced_at":"2026-04-26T12:31:50.371Z","repository":{"id":190456415,"uuid":"682666627","full_name":"EthyMoney/kaluma-mqtt","owner":"EthyMoney","description":"Kaluma library for the MQTT protocol","archived":false,"fork":false,"pushed_at":"2023-08-25T14:48:28.000Z","size":13,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-07T05:49:50.340Z","etag":null,"topics":["javascript","kaluma","mqtt","mqtt-client","pico-w","raspberry-pi-pico"],"latest_commit_sha":null,"homepage":"https://kalumajs.org","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/EthyMoney.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":"2023-08-24T16:59:46.000Z","updated_at":"2024-01-28T01:07:33.000Z","dependencies_parsed_at":"2024-12-20T18:13:01.914Z","dependency_job_id":"f96f2c7d-667c-4d5a-9324-c2bb0cbb679d","html_url":"https://github.com/EthyMoney/kaluma-mqtt","commit_stats":{"total_commits":9,"total_committers":1,"mean_commits":9.0,"dds":0.0,"last_synced_commit":"e1b9bcc413bd22cb3a3ba22c54cb6c03a4c44e94"},"previous_names":["ethymoney/kaluma-mqtt"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/EthyMoney/kaluma-mqtt","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EthyMoney%2Fkaluma-mqtt","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EthyMoney%2Fkaluma-mqtt/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EthyMoney%2Fkaluma-mqtt/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EthyMoney%2Fkaluma-mqtt/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/EthyMoney","download_url":"https://codeload.github.com/EthyMoney/kaluma-mqtt/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EthyMoney%2Fkaluma-mqtt/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32297893,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-26T09:34:17.070Z","status":"ssl_error","status_checked_at":"2026-04-26T09:34:00.993Z","response_time":129,"last_error":"SSL_read: 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":["javascript","kaluma","mqtt","mqtt-client","pico-w","raspberry-pi-pico"],"created_at":"2024-10-10T03:06:11.814Z","updated_at":"2026-04-26T12:31:50.351Z","avatar_url":"https://github.com/EthyMoney.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# kaluma-mqtt\n Kaluma library for the MQTT protocol\n\n\n### This library is NOT stable and still very much active development. DO NOT use until this is updated to say so.\n\n# Basic Example:\n```javascript\nconst { WiFi } = require('wifi');\nconst { MQTTClient } = require('mqtt');\n\nconst wifi = new WiFi();\ncont mqttClient = new MQTTClient('myClientId', 'myBrokerIp');\n\n\n// Connect to WiFi and then connect to MQTT broker\nwifi.connect({ ssid: 'my-wifi-name', password: 'my-password' }, (err) =\u003e {\n  if (err) {\n    console.error(err);\n  } else {\n    console.log('connected to wifi, connecting to MQTT broker');\n    mqttClient.connect();\n  }\n});\n\n\n// MQTT client event handlers\nmqttClient.on('connect', () =\u003e {\n  console.log('Connected to MQTT broker');\n  mqttClient.publish('my-topic', 'hello world!');\n});\n\n// data is an object that contains the message and topic as properties\nmqttClient.on('message', (data) =\u003e {\n  console.log('Received message:', data.message.toString(), 'on topic:', data.topic);\n});\n\nmqttClient.on('disconnect', () =\u003e {\n  console.log('Disconnected from MQTT broker');\n});\n\nmqttClient.on('error', (err) =\u003e {\n  console.error('Error:', err);\n});\n\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fethymoney%2Fkaluma-mqtt","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fethymoney%2Fkaluma-mqtt","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fethymoney%2Fkaluma-mqtt/lists"}