
Product
Introducing Tier 1 Reachability: Precision CVE Triage for Enterprise Teams
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
crawler-js
Advanced tools
Open source crawler framework
I was upset not to have something simple to extract information to do experiments. Thus was born the CrawlerJS, a platform that enables extract information from any websites without having to keep worrying about developing.
Rodrigo Matheus
var crawlerjs = require('crawler-js');
var worlds = {
interval: 1000,
getSample: 'http://www.tibia.com/community/?subtopic=worlds',
get: 'http://www.tibia.com/community/?subtopic=worlds',
preview: 0,
extractors: [
{
selector: '.TableContentContainer table.TableContent tr',
callback: function(err, html, url, response){
console.log('Crawled url:');
console.log(url);
// console.log(response); // If you need see more details about request
if(!err){
data = {};
data.world = html.children('td').eq(0).children('a').attr('href');
if(typeof data.world == 'undefined'){
delete data.world;
}
console.log(data);
}else{
console.log(err);
}
}
}
]
}
crawlerjs(worlds);
FAQs
Opensource Framework Crawler in Node.js
The npm package crawler-js receives a total of 5 weekly downloads. As such, crawler-js popularity was classified as not popular.
We found that crawler-js 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.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
Research
/Security News
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.
Security News
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.