rising-tide-tap-list
Version:
Returns a list of beers currently on tap at the Rising Tide Brewery
21 lines (15 loc) • 627 B
Markdown
# Rising Tide Tap List
[](https://travis-ci.org/tleen/rising-tide-tap-list)
A JavaScript module (and command line utility) to obtain a list of beers on tap at the [Rising Tide Brewery](http://www.risingtidebrewing.com/) in Portland, Maine. It is a simple web scraper.
## CLI
```shell
> bin/rising-tide
d'automne, daymark, ishmael, oktoberfest, waypoint
```
# Module
```javascript
require('rising-tide-tap-list')(function(err, results){
console.log(results);
// [ 'd\'automne', 'daymark', 'ishmael', 'oktoberfest', 'waypoint' ]
});
```