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-cmqeif

v1.0.2

Published

Node-RED nodes to manage CMQEIF data, Warp 10 and IO-Link devices

Readme

node-red-contrib-cmqeif

A collection of custom Node-RED nodes developed for the CMQEIF project.

The package provides nodes for working with Warp 10, IO-Link devices, MQTT process data and industrial IoT applications.

Installation

From the Node-RED Palette Manager

In Node-RED:

  1. Open Menu → Manage palette
  2. Select Install
  3. Search for:
node-red-contrib-cmqeif
  1. Click Install

Using npm

From your Node-RED user directory:

cd ~/.node-red
npm install node-red-contrib-cmqeif

For Node-RED running in Docker:

cd /data
npm install node-red-contrib-cmqeif

Restart Node-RED after installation if necessary.


Included nodes

prepare4warp10

Prepares incoming Node-RED data for storage in a Warp 10 time-series database.

The node formats data using the Warp 10 input format and can associate metadata with the measurement.

Typical configuration includes:

  • Metric name
  • Unit
  • Building
  • Room
  • School
  • Retention information

Example metric:

compresseur.pression

Example labels:

lycee=monnerville
salle=atelier

This node is typically placed before the warp10-post node.

Typical flow:

MQTT → prepare4warp10 → warp10-post → Warp 10

warp10-post

Sends prepared time-series data to a Warp 10 server using HTTP POST requests.

The node can be used with data generated by prepare4warp10.

Typical configuration includes:

  • Warp 10 server URL
  • Write token
  • Buffer size
  • Automatic buffer flush interval

The node is designed to reduce the number of HTTP requests by buffering several measurements before sending them to Warp 10.

Example architecture:

Sensors
   ↓
MQTT
   ↓
Node-RED
   ↓
prepare4warp10
   ↓
warp10-post
   ↓
Warp 10

iolinkProcessData

Decodes process data received from an IO-Link master.

The node can extract values from hexadecimal IO-Link process data and convert them into usable numerical values in Node-RED.

Typical configuration includes:

  • IO-Link port
  • Word index
  • Number of bytes
  • Data type
  • Scale

Supported conversions include:

  • Signed 16-bit integer
  • Unsigned 16-bit integer
  • Unsigned 32-bit integer

Example incoming process data:

00D7FF00

The decoded value can then be used by Node-RED, sent over MQTT or stored in a time-series database.


set-timer

Configures the timer interval of compatible industrial devices or IO-Link masters.

The node generates the appropriate request to configure a timer or acquisition interval.

It can be used to control the sampling frequency of connected devices from a Node-RED flow.


Example CMQEIF architecture

Industrial sensor
       ↓
    IO-Link
       ↓
 IO-Link Master
       ↓
      MQTT
       ↓
    Node-RED
       ↓
iolinkProcessData
       ↓
prepare4warp10
       ↓
 warp10-post
       ↓
    Warp 10
       ↓
Data visualization / analysis

Requirements

  • Node-RED
  • Node.js >= 14

Some nodes require access to external services such as:

  • MQTT broker
  • Warp 10 server
  • IO-Link master

Updating

To update to the latest version:

cd ~/.node-red
npm update node-red-contrib-cmqeif

For Docker installations:

cd /data
npm update node-red-contrib-cmqeif

Then restart Node-RED.


Source code

The source code is available on GitHub:

https://github.com/ericdaudrix/node-red-contrib-CMQEIF

Issues and feature requests can be submitted through the GitHub issue tracker.


Author

Eric Daudrix

CMQEIF — Campus des Métiers et des Qualifications d'Excellence Industrie du Futur


License

MIT