Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
This is an attempt to make a rss-feed parser that can parse the html content of an rss-entry as well as the entries themselves. It will give you an output of formatted JSON-articles which can be processed at will. It also has the ability to visit the article links and fetch a processed version of the content (done by node-read). Now go and build your own feedly! :)
var debug = require('debug')('rssreader:testapp');
var util = require('util');
var events = require('events');
var ipc = new events.EventEmitter();
function isActive (element) {
return element.active;
}
var handleEntry = function (item, callback) {
debug(util.inspect(item, { colors: true }));
callback(null, item);
};
var getFeeds = function (options, callback) {
var feeds = require('./template');
callback(null, feeds.filter(isActive));
};
var RssReader = require('rssreader');
var rssReader = new RssReader({
getSources: getFeeds,
handleEntry: handleEntry,
ipc: ipc,
sockets: 15,
waitTime: 10000,
timeOut: 5000
});
console.log('running rss-reader');
rssReader.run();
/example
folder for more elaborate templates):{
"active": true,
"origin": "feed",
"name": "hackernews",
"url": "https://news.ycombinator.com/rss",
"linkref": "url",
"category": 1,
"format": "desktop",
"body": true,
"template": {
"elements": [
{
"name": "guid",
"type": "url",
"required": true,
"items": [
{
"selector": "guid"
},
{
"selector": "link"
},
{
"selector": "title",
"decode": true
}
]
},
{
"name": "title",
"required": true,
"items": [
{
"selector": "title"
}
]
},
{
"name": "url",
"type": "url",
"required": true,
"items": [
{
"selector": "link"
}
]
},
{
"name": "image",
"type": "url",
"items": [
{
"selector": "enclosures[0].url"
}
],
"fallback": "https://news.ycombinator.com/y18.gif"
}
]
}
}
[
{
"origin": "feed",
"source": "https://news.ycombinator.com/",
"host": "news.ycombinator.com",
"ranking": 24,
"category": 1,
"guid": "http://blog.ycombinator.com/last-day-to-apply-to-yc-hacks",
"title": "Last day to apply to YC Hacks",
"url": "http://blog.ycombinator.com/last-day-to-apply-to-yc-hacks",
"image": "https://news.ycombinator.com/y18.gif",
"content": {
"title": "Last day to apply to YC Hacks",
"body": "<div class=\"post-body\" id=\"post_body_708360\"> <p>It's the last day to apply to Y Combinator's first hackathon, <a href=\"https://ycombinatorevents.wufoo.com/forms/yc-hacks-application/\">YC Hacks</a>. </p><p>The hackathon will be hosted at YC's office in Mountain View, CA on August 2-3. Our goal is to give smart hackers an excuse to get together and spend time building something they find interesting. We don't have a theme—we want to leave it open to any good ideas.<br></p><p>Kickoff will be at noon on Saturday, August 2. YC companies that develop platforms, services and developer tools, will be around to act as mentors. Judging will happen the evening of August 3. YC alumni are donating prizes, and the top teams will get guaranteed YC interviews for the next batch.</p><div>You can apply individually or as a team. Please have each team member fill out an application.</div><div><br></div><div>Apply <a href=\"https://ycombinatorevents.wufoo.com/forms/yc-hacks-application/\">here</a> by 11:59pm PST tonight. Invitations will be sent by July 7.<br> </div><div><br></div> </div>",
"image": "https://phaven-prod.s3.amazonaws.com/files/profile_pic/asset/1095067/z1Mvfb6GiEa405SoRjHKSEd4hFw/large_logo2000.png"
}
},
....
]
FAQs
RSS reader and parser for Congregator
We found that rssreader 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
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.