
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
node-red-contrib-feedparser-x
Advanced tools
A modified version of node-red-node-feedparser-2
Added persistent seen list, so you need not receive a train of messages when restart node-red
Run the following command in your Node-RED user directory - typically ~/.node-red
npm install node-red-contrib-feedparser-x
Edit setting.js, and search for contextStorage. Make some changes like following:
contextStorage: {
default: {
module:"memory"
},
redis: {
module:require("node-red-context-redis"),
config:{
host:"127.0.0.1",
port:6379,
prefix:"nodered"
}
}
},
The most significant change is adding redis key as well as its config.
Tips:
node-red-context-rediswas not released by node-red official in npm any more. But there is a feasible method that install from a git repo:
npm install git+https://github.com/node-red-hitachi/node-red-context-redis
Obviously, a redis server must be launched.
msg.payload should be assigned as the feed url.
msg.init_send is a boolean value, which when set as true, the history message would be
output, while when set as false, it would be not. Default value is false
msg.keep_size is a int value which default is 30, which was used to keep specified amount of messages. This module
will keep the latest keep_size messages. So, it is best to set the value to 1.5 times or even more the number of entries in the message source list.
A recommended method is to drag an inject node which intermittently input a url in to this node.
Same as node-red-node-feedparser
Bugs reporting and pull requests are welcome!
FAQs
A Node-RED node to get RSS Atom feeds. (persistent)
The npm package node-red-contrib-feedparser-x receives a total of 2 weekly downloads. As such, node-red-contrib-feedparser-x popularity was classified as not popular.
We found that node-red-contrib-feedparser-x 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
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.