J.D

Movie Database Express
Simple IMDB like application using express
messagedocumentation_url

Movie-Database-Express

Demo

A web application for browsing movies and leaving comments, powered by the OMDb API and MySQL.

Features

Technologies

Project Structure

index.js              - Express server with all routes
views/
  movieList.ejs       - Movie listing page
  moviePage.ejs       - Individual movie page
  comment.ejs         - Comment form
  login.ejs           - Login page
  signup.ejs          - Registration page
  partials/
    head.ejs          - HTML head partial
    login.ejs         - Login nav partial
public/
  CSS/styles.css      - Stylesheet
  js/
    moviePage.js      - Movie page client logic
    quote.js          - Quote functionality

How to Run

  1. Install dependencies:
    npm install
  2. Configure the MySQL database connection in index.js
  3. Start the server:
    node index.js
  4. Visit http://localhost:3000