The ABR Movie Finder App enables users to search for a movie by title and view information about that movie such as the poster image, the genre(s), the director(s), and the year of release. If the search doesn't yield a result, the message "Movie not found!" will appear. If this happens, the user can ammend the text in the search input and try again. This application utilizes The OMDb API http://www.omdbapi.com/.
In order to use the application, you must first clone the repository to your local machine or download the zip file.
You will preferably need the latest version of Google Chrome Brower and a text editor.
Go here for Chrome: https://www.google.com/chrome/
VSCode is my go to: https://code.visualstudio.com/
In your terminal clone the repository to your local machine using git clone:
git clone https://github.com/dbc257/abr-movie-app.git
Move to your newly cloned repository by entering the following in your terminal:
cd abr-movie-app && npm install
To run the app, enter the following in your terminal while still in the project directory:
npm start
The app will run in development mode and should open in your browser at http://localhost:3000.
David Carlisle