Skip to content

This application is a burger logger created with MySQL, Node, Express, Handlebars and a homemade ORM (yum!). It was designed the MVC pattern.

Notifications You must be signed in to change notification settings

khantatyana/Burger-Node-Express-Handlebars

Repository files navigation

Node-Express-Handlebars - Eat-Da-Burger!

Build Status

Heroku deployed page is here

Description

This application is a burger logger created with MySQL, Node, Express, Handlebars and a homemade ORM (yum!). It was designed the MVC pattern; Node and MySQL query and route data, and Handlebars generate the HTML.

demo

  • Eat-Da-Burger! is a restaurant app that lets users input the names of burgers they'd like to eat.

  • Whenever a user submits a burger's name, this app displays the burger on the left side of the page -- waiting to be devoured.

  • Each burger in the waiting area also has a Devour it! button. When the user clicks it, the burger will move to the right side of the page.

  • My app will store every burger in a database, whether devoured or not.

Directory structure

All the recommended files and directories from the steps above should look like the following structure:

.
├── config
│   ├── connection.js
│   └── orm.js
│ 
├── controllers
│   └── burgers_controller.js
│
├── db
│   ├── schema.sql
│   └── seeds.sql
│
├── models
│   └── burger.js
│ 
├── node_modules
│ 
├── package.json
│
├── public
│   └── assets
│       ├── css
│       │   └── burger_style.css
│       └── img
│       ├   └── burger.png
│       ├   └── burgerScrShot.png
├       ├── js
│       │   └── burger.js
│   
├── server.js
│
└── views
    ├── index.handlebars
    └── layouts
        └── main.handlebars

Enjoy!!!

About

This application is a burger logger created with MySQL, Node, Express, Handlebars and a homemade ORM (yum!). It was designed the MVC pattern.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages