/Eat-da-Burger

A burger restaurant eating app that uses MySql, Node, Express, Handlebars and homemade ORM. Yum!

Primary LanguageJavaScript

🍔 Eat-da-Veggie-Burger!

Overview

A Node, Express, Handlebars, and MySQL burger app that lets users input the names of burgers they would like to eat...and then devour them! Check out the launched app on Heroku here!

Functionality

Using an home-grown ORM, the app has 3 basic CRUD functions...

  1. READ all entries from the MySQL database and display them to the DOM using Handlebars.
  2. UPDATE a selected burger by clicking "Devour It", which... * hits an /burger/eat/:id route in Express to change its "devoured" status in the MySQL database * re-routes the webpage back to the index, where the burger is now in the devoured column (via Handlebars)
  3. CREATE a new burger using the "Place Order" form, which... * hits a /burger/create route in Express to insert a new burger into the MySQL database * re-routes the webpage back to the index, where the burger is now ready to be eaten column (via Handlebars)

eatburger