Giter Club home page Giter Club logo

yum's Introduction

YUM!

For Homework you will be writing a node application to practice using Mongoose. You task: create an app that tracks and stores Restaurants and Menu Items.

Setup

Fork and clone this repo. Then run $ npm install to install all the modules listed in package.json.

You can test your code by running $ nodemon index.js in the Terminal.

Part I: Mongoose

You'll begin by creating an app that performs CRUD functionality on a database using Mongoose queries. You should not be using Express yet.

  1. Create schemas and corresponding models for a restaurant and for menu items.

  2. Adds seed data for the restaurant and menu items...

  • A restaurant should have the following field names...

    • name - a string
    • address - an object with a street (string) and zipcode property (number)
    • yelpUrl - a string
    • items - an array containing your MenuItems schema
  • A menu item should contain the followin...

    • title - a string
  1. Create a new restaurant.

  2. Write a function or method that finds a restaurant by name.

  3. Write a function or method that finds all restaurants by zipCode.

  4. Create a function that updates a restaurant.

  5. Write a function or method that deletes a restaurant.

  6. Write methods to add and remove embedded menu item documents for a restaurant of your choosing.

Part II: Add Express

You will know how to do this after Monday morning's Express + Mongoose lesson. Feel free, however, to give this a shot over the weekend.

Turn YUM into an Express app with routes that you can view in your browser and forms that manipulate your data with full CRUD.

Your app should have two pages...

  • A page that lists all restaurants, on which a user can create a new restaurant.
  • A page that lists one restaurant and all its menu items, on which a user can...
    • Delete the restaurant.
    • Update the restaurant.
    • Create a new menu item for the restaurant.
    • Delete a menu item from the restaurant.

yum's People

Contributors

amaseda avatar beckybeauchamp1 avatar robertakarobin avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar  avatar

yum's Issues

Yum Application

Here is the application for YUM with mongoose and express:
https://github.com/chris-A-phillips/yum-express

There are no views rendered everything is served as json in this package.

I'm currently learning how to put Angular on top of the mean stack. I don't know why I get so stuck on convention but I've watched countless youtube videos and tutorials these past 3 days. read tons of style guides, and only now feel like I'm getting a handle on how this should all look and work.

Thanks for...........

Anyway, I really don't like that the crud for my /resturants takes up almost 90 lines. I feel like that's a lot considering I only included minor error handling and status mutations.

What are validations?

Where do they go?

Should they be a promise in our restful functions?

You can use postmaster like I did to verify all the routes work and that they perform crud on the restaurant model of the database.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.