cheerio
This is a version of cheerio for parse.com
Usage
- Put 'cheerio.js' file into your 'cloud/modules/' folder.
- Require module in Cloud Code.
Examples
var cheerio = require('cloud/modules/cheerio.js'),
$ = cheerio.load('<h2 class="title">Hello world</h2>');
$('h2.title').text('Hello there!');
$('h2').addClass('welcome');
$.html();
//=> <h2 class="title welcome">Hello there!</h2>
var cheerio = require('cloud/modules/cheerio.js'),
$ = cheerio.load('<p>paragraph 1</p> <p>paragraph 2</p> <p>paragraph 3</p>');
var list = $('p').map(function() {
return $(this).text();
}).get();
//=> list = [ "paragraph 1", "paragraph 2", "paragraph 3" ]