MovieVerse is a frontend web application built with React.js that allows users to browse movies, TV shows, and actors, and view detailed pages for each. The data is fetched from a local server using JSON Server.
- Browse movies and TV shows
- View detailed pages for each title
- View actor profiles
- Search functionality
- Responsive and modern UI
- Node.js and npm installed on your machine
- A local server running on http://localhost:3001 using
JSON Server
⚠️ Important: Before running the app, make sure you start the local backend using thedb.jsonfile on port3001.
-
Clone the repository:
git clone https://github.com/your-username/movieverse.git
-
Install frontend dependencies:
npm install
-
Start the JSON Server (in a separate terminal):
npx json-server --watch db.json --port 3001
-
Start the React app:
npm start