Simple web application that fetches daily lunch menus from popular restaurants near ERNI Slovakia office.
Live application is running at http://at11.azurewebsites.net/.
This is a Node.js powered application writen it TypeScript, so first you need to have Node.js up and running.
- Get the source code by either downloading a zip or cloning this repo.
- Change into directory with extracted/cloned sources
cd path/to/sources
. - Execute
npm install
. This might take a moment as all required dependecies need to be downloaded. - Execute
npm run build
to transpile typescript into javascript. - Execute
npm start
. This will prompt a few messages, last of them beingDone, listening on http://:::54321
and hang. - Navigate your browser to http://localhost:54321 and you should see today's menus.
- You can execute
npm test
to run the tests and linter.
P.S.: Visual Studio Code settings are included in the repo, so if you use it, you are all set up (including debugging). You need to do only first 3 steps, then launch VS Code in that directory (code .
), hit F5, lean back and relax...
Feel free to fork the repo, make improvements and create a pull request.