Skip to content

Latest commit

 

History

History
46 lines (32 loc) · 1.67 KB

README.md

File metadata and controls

46 lines (32 loc) · 1.67 KB

Movie Web App - API

Made with love by -- gunt --

Project Description:

Project “Flix MovieApp” web application. The web application will provide users with access to information about different movies, directors, and genres. Users will be able to sign up, update their personal information, and create a list of their favorite movies.

Required Features:

  1. Return a list of ALL movies to the user

  2. Return data (description, genre, director, image URL, whether it’s featured or not) about a single movie by title to the user

  3. Return data about a genre (description) by name/title (e.g., “Thriller”)

  4. Return data about a director (bio, birth year, death year) by name

  5. Allow new users to register

  6. Allow users to update their user info (username, password, email, date of birth)

  7. Allow users to add a movie to their list of favorites

  8. Allow users to remove a movie from their list of favorites

  9. Allow existing users to deregister

Technical Requirements:

  • The API must be a Node.js and Express application.
  • The API must use REST architecture, with URL endpoints corresponding to the data operations listed above
  • The API must use at least three middleware modules, such as the body-parser package for reading data from requests and morgan for logging.
  • The API must use a “package.json” file.
  • The database must be built using MongoDB.
  • The business logic must be modeled with Mongoose.k
  • The API must provide movie information in JSON format.