Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

cheerio-select

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cheerio-select - npm Package Compare versions

Comparing version 0.0.2 to 0.0.3

.travis.yml

7

History.md

@@ -0,1 +1,8 @@

0.0.3 / 2012-05-29
==================
* compatible with node 4.x
* added travis support
0.0.2 / 2012-05-27

@@ -2,0 +9,0 @@ ==================

9

index.js
exports = module.exports = require('./lib/select');
/*
* Library version
*/
exports.version = require('./package.json').version;
Export the version
*/
exports.version = (function() {
var pkg = require('fs').readFileSync(__dirname + '/package.json', 'utf8');
return JSON.parse(pkg).version;
})();
{
"name" : "cheerio-select",
"version" : "0.0.2",
"version" : "0.0.3",
"description" : "Selector engine for cheerio",

@@ -19,3 +19,6 @@ "keywords" : [],

"node": ">= 0.4.7"
},
"scripts": {
"test" : "make test"
}
}
# cheerio-select
# cheerio-select [![Build Status](https://secure.travis-ci.org/MatthewMueller/cheerio-select.png?branch=master)](http://travis-ci.org/MatthewMueller/cheerio-select)
Tiny wrapper around FB55's excellent [CSSselect](https://github.com/FB55/CSSselect) library.
cheerio-select provides a comprehensive test suite based on sizzle's test suite. If all the tests pass in cheerio-select, then sizzle and CSSselect should have identical functionality.
cheerio-select provides a comprehensive test suite based on sizzle's test suite.
> Warning: Currently, not all tests pass, and some sizzle features will not be supported
## Usage

@@ -20,5 +22,2 @@

* Get all the unit tests to pass!
* Consider adding client-side tests
* psuedo-visibility: https://github.com/jquery/sizzle/blob/master/test/unit/selector.js#L530
* psuedo-form: https://github.com/jquery/sizzle/blob/master/test/unit/selector.js#L554

@@ -25,0 +24,0 @@ ## Run tests

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc