Socket
Socket
Sign inDemoInstall

cheerio-soupselect

Package Overview
Dependencies
4
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    cheerio-soupselect

Adds CSS selector support to htmlparser for scraping activities - port of soupselect (python)


Version published
Maintainers
1
Install size
134 kB
Created

Readme

Source

cheerio-soupselect

A fork of harryf's [node-soupselect] (http://github.com/harryf/node-soupselect), which is originally a port of Simon Willison's soupselect for use with node.js and node-htmlparser.

Installation

$ npm install cheerio-soupselect

Testing

From the root folder:

$ make test

Features

Selectors

cheerio-soupselect supports all of the most common jQuery selectors, including multiple attribute selectors and multiple selectors.

Filters

soupselect also supports a bunch of basic filters, listed below. Each filter is implement according to the jQuery specification.

  • contains
  • empty
  • parent
  • has
  • header
  • not
  • eq
  • gt
  • lt
  • even
  • odd
  • first
  • last

Filter Extensions

cheerio-soupselect supports custom filters through the exported filters object. It's simple:

var soupselect = require("cheerio-soupselect"),
    filters = soupselect.filters;
...
filters["custom-filter"] = function(ctx, val){
    console.log("Hello filters!");
    return [];
};
...
var ret = soupselect.select(dom, ":custom-filter('awesome arg')");

The ctx parameter provides an array of htmlparser2 DOMs, which are themselves arrays. These element are grouped by parent.

The val parameter provides access to everything inside the brackets of the filter, if anything.

A few notes about custom selectors:

  • Your custom function must return an array.

  • For the most part, you will not need to handle nesting filters/selectors. However, if you wish to modify the nested selector then, you may do so by modifiying val.

FAQs

Last updated on 04 Mar 2012

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc