
Security News
Django Joins curl in Pushing Back on AI Slop Security Reports
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
node-red-contrib-change-detect
Advanced tools
[](https://www.npmjs.com/package/node-red-contrib-change-detect) [](https://travis-
A change detection node for Node-RED
Change detecting works by keeping track of
Date.now()
) andmsg.payload
)By keeping track of timestamp and value by identifier (typically msg.topic
) the node is able to determine if a message timestamp or value has changed enough according to the criteria defined.
Individual change detection nodes- if more than one is used- are independent. Each node builds its own cache of message identifiers and time/value history. Note that this map will continue to grow with each new identifier found.
Message that fulfill the change detection criteria are forwarded to the pass
output, all other messages are forwarded on the skip
output.
To use this node configure the following settings.
minTimeDelta
specifies the minimum time resolution in milliseconds. If another message of the same identifier arrives within minTimeDelta
it will be removed.
minValueDelta
specifies the minimum value resolution. If another message of the same identifier arrives that is not different from the previous message by at least minValueDelta
it will be removed.
maxTimeDelta
can be used to ensure that once in a while a message is passed even if it's value did not change. Specifying maxTimeDelta
is only helpful if matching mode is AND
.
Conditions matching mode indicates under what condition messages are allowed to pass:
minValueDelta
or minTimeDelta
conditions are true. This is the default.minValueDelta
and minTimeDelta
conditions are trueFAQs
[](https://www.npmjs.com/package/node-red-contrib-change-detect) [](https://travis-
The npm package node-red-contrib-change-detect receives a total of 0 weekly downloads. As such, node-red-contrib-change-detect popularity was classified as not popular.
We found that node-red-contrib-change-detect demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.