
Research
/Security News
Critical Vulnerability in NestJS Devtools: Localhost RCE via Sandbox Escape
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
node-scrapy
Advanced tools
Simple, lightweight and expressive web scraping with Node.js
const scrapy = require('node-scrapy')
const fetch = require('node-fetch')
const url = 'https://github.com/expressjs/express'
const model = '[itemprop="about"]'
fetch(url)
.then(res => res.text())
.then(body => {
console.log(scrapy.extract(body, model))
})
.catch(console.error)
// Fast, unopinionated, minimalist web framework for node.
node-scrapy can resolve complex objects. Give it a data model:
const scrapy = require('.')
const fetch = require('node-fetch')
const url = 'https://github.com/strongloop/express'
const model = {
author: '.author',
repo: '[itemprop="name"]',
stats: {
commits: '.numbers-summary > li:nth-child(1) .num | trim',
branches: '.numbers-summary > li:nth-child(2) .num | trim',
releases: '.numbers-summary > li:nth-child(3) .num | trim',
contributors: '.numbers-summary > li:nth-child(4) .num | trim',
social: {
watch: '.pagehead-actions > li:nth-child(1) .social-count | trim',
stars: '.pagehead-actions > li:nth-child(2) .social-count | trim',
forks: '.pagehead-actions > li:nth-child(3) .social-count | trim',
},
},
files: [
'.js-navigation-item .content',
{
name: 'a => $textContent',
url: 'a => href',
},
],
}
fetch(url)
.then(res => res.text())
.then(body => {
console.log(scrapy.extract(body, model))
})
.catch(console.error)
...and Scrapy will return:
{
author: 'expressjs',
repo: 'express',
stats: {
commits: '5,308',
branches: '13',
releases: '262',
contributors: '199',
social: { watch: '1,626', stars: '30,260', forks: '5,531' },
},
files: [
{ name: 'benchmarks', url: '/expressjs/express/tree/master/benchmarks' },
{ name: 'examples', url: '/expressjs/express/tree/master/examples' },
{ name: 'lib', url: '/expressjs/express/tree/master/lib' },
{ name: 'test', url: '/expressjs/express/tree/master/test' },
{ name: '.gitignore', url: '/expressjs/express/blob/master/.gitignore' },
{ name: '.travis.yml', url: '/expressjs/express/blob/master/.travis.yml' },
{ name: 'Collaborator-Guide.md', url: '/expressjs/express/blob/master/Collaborator-Guide.md' },
{ name: 'Contributing.md', url: '/expressjs/express/blob/master/Contributing.md' },
{ name: 'History.md', url: '/expressjs/express/blob/master/History.md' },
{ name: 'LICENSE', url: '/expressjs/express/blob/master/LICENSE' },
{ name: 'Readme-Guide.md', url: '/expressjs/express/blob/master/Readme-Guide.md' },
{ name: 'Readme.md', url: '/expressjs/express/blob/master/Readme.md' },
{ name: 'Release-Process.md', url: '/expressjs/express/blob/master/Release-Process.md' },
{ name: 'Security.md', url: '/expressjs/express/blob/master/Security.md' },
{ name: 'appveyor.yml', url: '/expressjs/express/blob/master/appveyor.yml' },
{ name: 'index.js', url: '/expressjs/express/blob/master/index.js' },
{ name: 'package.json', url: '/expressjs/express/blob/master/package.json' },
],
}
For more examples, check the test folder.
npm install node-scrapy
🍠 Simple: No XPaths. No complex object inheritance. No extensive config files. Just JSON and the CSS selectors you're used to. Simple as potatoes.
⚡ Lightweight: node-scrapy relies on htmlparser2 and css-select, known for being fast.
📢 Expressive: Web scrapping is all about data, so node-scrapy aims to make it declarative. Both, the model and its corresponding output are JSON-serializable.
Here some alternative nodejs-based solutions similar to node-scrapy (in popularity order):
node-scrapy is in an early stage, we would love you to involve in its development! Go ahead and open a new issue.
MIT ❤
FAQs
Simple, lightweight and expressive web scraping with Node.js
The npm package node-scrapy receives a total of 3,389 weekly downloads. As such, node-scrapy popularity was classified as popular.
We found that node-scrapy 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.
Research
/Security News
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.