Skip to content

Movie Application using Angular and json server

Notifications You must be signed in to change notification settings

febin97/MyMovie

Repository files navigation

MyMovie

This project was generated with Angular CLI version 8.3.0.

How to Run

Run json-server --watch db.json on One terminal to open up the JSON server in port 3000.

npm install --save-dev @angular-devkit/build-angular

Run ng serve for a dev server. Navigate to http://localhost:4200/. The app will automatically reload if you change any of the source files.

Functionalities

  1. View trending Movies: The Home page of the application displays the popular movies.(Home Component)
  2. Search : The user can search for movies by giving name as input.(search component)
  3. View Details of a Particular movie : User can view the details of a particular movie(Movie Component)
  4. Favourites: From the "Movie Component" Users can add and delete movies from their favourite list and view their favourite list in the "favoutrites Component"
  5. Users can also add,edit and delete comments which they post for their favourite movies

Useful Notes

=> This app uses HTTP get, POST, PUT and delete operations and thus, can be good referrence for the same.