[![Build Status](https://travis-ci.org/icyrockcom/purescript-cheerio.svg?branch=master)](https://travis-ci.org/icyrockcom/purescript-cheerio) ## Description Basic bindings for [cheerio](https://cheerio.js.org/). Only includes read-only functionality for now. ## Installation Install [cheerio](https://www.npmjs.com/package/cheerio) dependency: ```bash $ npm install --save cheerio ``` Install this package using [spago](https://github.com/purescript/spago): * Add package to your `spago.dhall`: ```dhall ... dependencies = [ ..., "cheerio" ] ... ``` * Install packages by running: ```bash $ spago install ``` ## Example From [basic example](examples/Basic.purs). Imports: ```purescript import Cheerio (Cheerio, find, length) import Cheerio.Static (loadRoot) ``` Example html: ```purescript htmlEx :: String htmlEx = """