1.0.3 • Published 2 years ago

bengaluru_brews v1.0.3

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

A JavaScript module (and command line utility) to obtain a list of beers on tap at Brewklyn Beer and TOIT It is a simple web scraper.

CLI

> bin/BenBrew

TOIT
dark-knight,
colonial-toit,
toit-red,
toit-weiss,
tintin-toit,
basmati-blonde,
benga-lager-u-2


BREWKLYN
brewklyns finest - belgian wit,
ale capone - new england ipa,
wheat porter - iron mike,
streissand - saison,
biggie - marzen/oktoberfest

Module

const brewww = require("bengaluru_brews")
 
brewww.toit(function(err,results){
    console.log(results)
})

brewww.brewklyn(function(err,results){
    console.log(results)
})

//OUTPUT

// [
//   'dark-knight',
//   'colonial-toit',
//   'toit-red',
//   'toit-weiss',
//   'tintin-toit',
//   'basmati-blonde',
//   'benga-lager-u-2'
// ]
// [
//   "brewklyn's finest - belgian wit",
//   'ale capone - new england ipa',
//   'wheat porter - iron mike',
//   'streissand - saison',
//   'biggie - marzen/oktoberfest'
// ]
});
1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago