Ratebeer API is an unofficial JavaScript library for working with http://ratebeer.com data. It was inspired by the Beer Advocate API by Charlie Hield: https://github.com/stursby/beer-advocate-api
Ratebeer API can be installed via NPM. (For more on NPM, see this introduction). Make sure you’re in your projects directory, and run the following:
$ npm install ratebeer-api
Next, make sure to include Ratebeer API in your project.
var rb = require('ratebeer-api');
Search for a beer
rb.beerSearch("Anchor Steam", function(beers) {
console.log(beers);
});
Get a specific beer page
rb.beerPage("/beer/dogfish-head-60-minute-ipa/7431/", function(beer) {
console.log(beer);
});
Ratebeer API is not associated with �Ratebeer.com�. I love everything they've done for beer and making the info available to all of us.
Ratebeer API is inspired by the Beer Advocate API. Thank you Charlie Hield for the work you did. I hope my work with the Ratebeer API can be as beneficial.