Created By: Hyejin Kim, Creator
Date: Jan 18, 2020
"In this assignment, you'll create a burger logger with MySQL, Node, Express, Handlebars and a homemade ORM (yum!). Be sure to follow the MVC design pattern; use Node and MySQL to query and route data in your app, and Handlebars to generate your HTML."
-
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, your app will display 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. -
Your app will store every burger in a database, whether devoured or not.
-
Create a GitHub repo called
burger
and clone it to your computer. -
Make a package.json file by running
npm init
from the command line. -
Install the Express npm package:
npm install express
. -
Create a server.js file.
-
Install the Handlebars npm package:
npm install express-handlebars
. -
Install MySQL npm package:
npm install mysql
. -
Require the following npm packages inside of the server.js file:
- express
-
Inside your
burger
directory, create a folder nameddb
. -
In the
db
folder, create a file namedschema.sql
. Write SQL queries this file that do the following:- Create the
burgers_db
. - Switch to or use the
burgers_db
. - Create a
burgers
table with these fields:- id: an auto incrementing int that serves as the primary key.
- burger_name: a string.
- devoured: a boolean.
- Create the
-
Still in the
db
folder, create aseeds.sql
file. In this file, write insert queries to populate theburgers
table with at least three entries. -
Run the
schema.sql
andseeds.sql
files into the mysql server from the command line -
Now you're going to run these SQL files.
-
Make sure you're in the
db
folder of your app. -
Start MySQL command line tool and login:
mysql -u root -p
. -
With the
mysql>
command line tool running, enter the commandsource schema.sql
. This will run your schema file and all of the queries in it -- in other words, you'll be creating your database. -
Now insert the entries you defined in
seeds.sql
by running the file:source seeds.sql
. -
Close out of the MySQL command line tool:
exit
.
-
-
Inside your
burger
directory, create a folder namedconfig
. -
Create a
connection.js
file insideconfig
directory.-
Inside the
connection.js
file, setup the code to connect Node to MySQL. -
Export the connection.
-
-
Create an
orm.js
file insideconfig
directory.-
Import (require)
connection.js
intoorm.js
-
In the
orm.js
file, create the methods that will execute the necessary MySQL commands in the controllers. These are the methods you will need to use in order to retrieve and store data in your database.selectAll()
insertOne()
updateOne()
-
Export the ORM object in
module.exports
.
-
-
Inside your
burger
directory, create a folder namedmodels
.-
In
models
, make aburger.js
file.-
Inside
burger.js
, importorm.js
intoburger.js
-
Also inside
burger.js
, create the code that will call the ORM functions using burger specific input for the ORM. -
Export at the end of the
burger.js
file.
-
-
-
Inside your
burger
directory, create a folder namedcontrollers
. -
In
controllers
, create theburgers_controller.js
file. -
Inside the
burgers_controller.js
file, import the following:- Express
burger.js
-
Create the
router
for the app, and export therouter
at the end of your file.
-
Inside your
burger
directory, create a folder namedviews
.-
Create the
index.handlebars
file insideviews
directory. -
Create the
layouts
directory insideviews
directory.-
Create the
main.handlebars
file insidelayouts
directory. -
Setup the
main.handlebars
file so it's able to be used by Handlebars. -
Setup the
index.handlebars
to have the template that Handlebars can render onto. -
Create a button in
index.handlebars
that will submit the user input into the database.
-
-
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
│
│
├── server.js
│
└── views
├── index.handlebars
└── layouts
└── main.handlebars
- deployed Screenshot:
- Javascript
- Git
- GitHub
- Heroku
- Node
- JSON
- NPM Packages
- orm.js
- handlebar
- MySQL
- Clearly state the problem the app is trying to solve (i.e. what is it doing and why) ✓
- Give a high-level overview of how the app is organized ✓
- Give start-to-finish instructions on how to run the app ✓
- Include screenshots, gifs or videos of the app functioning ✓
- Contain a link to a deployed version of the app ✓
- Clearly list the technologies used in the app ✓
- State your role in the app development ✓