A Burger Eatin' Application With Node.js/Express/MySQL/Handlebars/Materialize
Welcome to Bernie's Online Burger Shop! Pull up a seat, create a burger and devour it! This application demonstrates a simple full stack application with a front end implemented with HTML/CSS and elements from the Materialize framework and the backend implemented with Node.js and Express. HTML templating is done with the help of Handlebars.
The user may enter any burger name to add it to the menu. This also adds the new burger entry into the MySQL database. The initial burger entry is added as available on the menu and placed on the left side of the screen. The user may then eat any burger by clicking on it, which moves it into the adjacent column and updates its status accordingly in the database.
To run the application locally, first clone this repository with the following command.
[email protected]:andrewjthomsen/Burger.git Next, install the application dependencies.
cd Burger npm install Finally, run the node server locally.
node server Now, open the local application on port 3000 at the URL: http://localhost:8080/.
Enjoy and have a burger!