movies-express-mongodb

Example of Express and MongoDB to make a simple API

Running

yarn dev => localhost:7000

Currently implemented:

  • List movies: GET /movies
  • Create sample movies: GET /setup

Challenges

Add some more sample movies

Add extra fields to movie model

  • Add yearReleased (Number), description, rating

Add CRUD APIs to movies

Advanced: Add relations to movie

Create a React front-end

  • Lists movies
  • Create a movie using a form
  • Update a movie
  • Delete a movie
  • Filter movies by year