hwh-lunch
v1.0.2
Published
Returns the lunch menu from Henry Wood House, a cafe in a London workplace
Downloads
3
Readme
Henry Wood House Menu
DEPRECATED
Unfortunately, The Office Group changed their website and no longer publish menus on their website, so this tool no longer works. :sob:
Intro
Henry Wood House is an office building in London, run by The Office Group.
The lunch menu for the café is available online. This utility uses a scraper to retrieve the menu and return it, as a string.
Installation
npm install --save hwh-lunch
Usage
var HwhLunch = require('hwh-lunch');
/*
Takes a number from 1-5, indicating
which day of the week you want the menu
for. Monday = 1, Friday = 5.
*/
// Use Monday for this example.
var dayOfWeek = 1;
HwhLunch(dayOfWeek).then(function(menu) {
// Do whatever you wish with this information.
console.log(menu);
});