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-3dm-space

v0.0.8

Published

Node-RED nodes for 3DM.space SCADA Cloud telemetry and attributes

Readme

node-red-contrib-3dm-space

Node-RED nodes for sending telemetry data to 3DM.space SCADA Cloud and receiving cloud attribute commands.

This package is designed for Smithtek PassPort gateways and provides simple 3DM Cloud communication without exposing MQTT details to the user.

Nodes Included

3DM Cloud Login

Shared configuration node used by the 3DM input and output nodes.

The user only needs to enter:

  • Name
  • Username
  • Password
  • Optional Client ID

Connection details are handled internally.

3DM Out

Sends JSON telemetry data to 3DM.space SCADA Cloud.

The node automatically:

  • Adds a timestamp
  • Formats the payload for 3DM Cloud time-series data
  • Publishes to the correct cloud endpoint
  • Applies a publish rate limit
  • Stores messages locally if the cloud connection is offline
  • Replays stored messages when the connection returns

Example input:

{
  "pump_run": true,
  "flow_lpm": 125.5,
  "tank_level_percent": 64,
  "dc_voltage": 24.1
}

3DM In

Receives cloud attribute updates from 3DM.space.

The node can:

  • Allow all incoming attributes through
  • Filter by a single key
  • Output the selected value only
  • Output an object containing the selected key and value

Example cloud attribute:

{
  "pump_cmd": 1
}

Store and Forward

The 3DM Out node includes built-in store and forward.

If the cloud connection is lost, valid telemetry messages are stored locally using a persistent queue. Each message is timestamped when it arrives at the node, not when it is replayed.

When the cloud connection returns, stored messages are replayed automatically.

Default replay speed:

250 ms per packet

This equals approximately:

4 packets per second

Rate Limiting

The 3DM Out node includes a live publish throttle to prevent users from publishing too quickly.

Default live publish limit:

1 message every 10 seconds

If valid telemetry arrives faster than the live publish limit, it is queued rather than discarded.

License

GPL-3.0-or-later

Author

Smithtek