npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

node-red-contrib-clearblade-mqtt

v1.0.5

Published

ClearBlade-Node-RED MQTT input, Output & Broker (Client) Config node to support clearblade mqtt

Downloads

39

Readme

ClearBlade MQTT Connection for Node-Red

Setup

  1. Use, a 'mqtt in cb' for subscribing and 'mqtt out cb' for publishing to ClearBlade.

  2. Steps to Perform on ClearBlade Platform (https://platform.clearblade.com):

    • Create a 'System' on the clearblade platform.
    • Create a 'User; in the user section of the console, it has default 'Authenticated Role'. (the credentials entered here, will be used as ClearBlade Username & ClearBlade Password when filling out the Broker Client Config)
    • On the Roles page of the Console, Select the 'Authenticated' Role (or any other role which the user is allocated), go to the "Message Topics" section and set the permission for topic names for that role, hit 'Save and Exit'.
    • Note down ClearBlade System Key & System Secret from the info tab in the Console.
  3. In any node(mqtt in/out cb), add/edit a 'cb mqtt broker config node'.

  4. Enter the following details in the Broker Client Config:

    • ClearBlade SystemKey: c6c1b0bb6a7a685a9d3ecf0f001
    • ClearBlade SystemSecret: C6C1E6CECE6BFD495F8B3A001
    • ClearBlade Username(Email): [email protected]
    • ClearBlade Password: yourpassword
    • ClearBlade PlatformUrl: https://platform.clearblade.com
    • Server (Messaging/Broker Url): platform.clearblade.com
    • Port: 1884
    • Enable tls: check box
    • ClientId: UniqueClientId

    This information will be used to dynamically authenticate user to the platform (using https, auth using mqtt will be added in the future). For more details about mqtt at ClearBlade refer: https://docs.clearblade.com/v/3/4-developer_reference/MQTT/

  5. For non-tls, set the port as 1883, to use tls, just select the tls checkbox and use port 1884.

  6. For sending data to the edge, the following parameters might need some update:

    • Server/Broker URL: <ip-address-of-the-edge>
    • ClearBlade PlatformUrl: http://<ip-address-of-the-edge>:9000
  7. Once Config is done, set the topics, qos and other details as per requirement in the 'mqtt in/out cb' nodes, which is similar to Node-Red's core MQTT nodes.

  8. Finally, hit deploy.