- This app will allow a user to search for a movie with a name and give the user a list
of movies with that name.
- This also Provides random Suggestions on the home Page.
- The user can also view the Information about a particular movie clicking it. And then it
redirects to another page where more descriptive info about that movie would display.
NodeJS
ExpressJS
EJS
OMDB API
NPM Modules
bodyParser
ejs
dotenv
request
- We got an API key for the OMDb API.
- We also built a component that lets a user search for a movie by title,
then stores the movie title in that component’s state.
- Next, we passed the function to the search form so it takes effect when we
click the button or hit enter.
- Then, we stored the response in the Movies state and built a search component
that displays the response data we got from the API.
- We then show the results to the user.
https://developer.mozilla.org/en-US/
https://www.goingtointernet.com/2021/11/create-movie-website-css.html (TEMPLATE)