Movie discovery and streaming platform with TMDB integration
- Overview
- Features
- Demo Screenshots
- Quick Start
- Project Structure
- Technology Stack
- Browser Support
- Movie Data
- Security Privacy
- Contributing
- FAQ
- License
Web application for browsing movies with ratings, genres, and streaming options. Built with React and Vite, featuring a dark-themed interface optimized for all devices.
- Browse trending, upcoming, and popular movies
- View ratings, genres, and movie details
- Add movies to favorites
- Search and filter by title or genre
- View cast, synopsis, and statistics
- Integrated video player with multiple servers
- Responsive design for all devices
Live demo: https://flickhub-site.vercel.app/
Node.js >= 16
npm >= 8# Clone the repository
git clone https://github.com/BilgeGates/FlickHub.git
# Navigate to project directory
cd FlickHub
# Install dependencies
npm install
# Create environment file
cp .env.example .env
# Add your TMDB API key to .env
# Start development server
npm run devThe application will automatically open at http://localhost:5173
# Create optimized production build
npm run build
# Preview production build
npm run previewflickhub/
β
βββ π public/
β βββ favicon.ico
β
βββ π src/
β β
β βββ π assets/ # Images, fonts, icons
β β βββ π icons/
β β βββ π images/
β β
β βββ π components/
β β β
β β βββ π common/ # Reusable components
β β β βββ Button.jsx
β β β βββ Card.jsx
β β β βββ ErrorBoundary.jsx
β β β βββ Loading.jsx
β β β
β β βββ π layout/ # Layout components
β β β βββ Footer.jsx
β β β βββ Layout.jsx
β β β βββ Navbar.jsx
β β β
β β βββ π movie/ # Movie components
β β β βββ MovieCard.jsx
β β β βββ MovieGrid.jsx
β β β
β β βββ π search/ # Search components
β β βββ GenreFilter.jsx
β β βββ SearchBar.jsx
β β
β βββ π context/ # React Context
β β βββ MovieContext.jsx
β β
β βββ π hooks/ # Custom React hooks
β β βββ useFavorites.js
β β βββ useMovies.js
β β βββ useSearch.js
β β
β βββ π pages/ # Application pages
β β βββ FavoritesPage.jsx
β β βββ Home.jsx
β β βββ MovieDetailPage.jsx
β β βββ PlayerPage.jsx
β β βββ SearchPage.jsx
β β βββ TrendingPage.jsx
β β βββ UpcomingPage.jsx
β β
β βββ π services/ # API services
β β βββ api.js
β β βββ tmdb.js
β β
β βββ π styles/ # CSS styles
β β βββ animations.css
β β βββ index.css
β β
β βββ π utils/ # Utility functions
β β βββ constants.js
β β βββ embedUrls.js
β β βββ helpers.js
β β
β βββ App.jsx # Root component
β βββ main.jsx # Entry point
β
βββ π .env.example # Environment template
βββ π .eslintrc.cjs # ESLint config
βββ π .prettierrc # Prettier config
βββ π .gitignore
βββ π index.html
βββ π jsconfig.json
βββ π postcss.config.cjs
βββ π tailwind.config.cjs
βββ π vite.config.js
βββ π package.json
βββ π README.md
βββ π CONTRIBUTING.md
βββ π CODE_OF_CONDUCT.md
βββ π SECURITY.md
βββ π LICENSE
|
React 18.2 UI Framework |
JavaScript ES6+ Language |
Tailwind CSS 3.3 Styling |
Vite 5.0 Build Tool |
- React Router - Client-side routing
- Framer Motion - Animations
- React Icons - Icon library
- React Toastify - Toast notifications
- localStorage - User data persistence
| Browser | Version | Status |
|---|---|---|
| 90+ | β Tested | |
| 88+ | β Tested | |
| 14+ | β Expected to work | |
| 90+ | β Expected to work | |
| 76+ | β Expected to work |
- ES6+ JavaScript
- CSS Grid & Flexbox
- localStorage API
- Responsive viewport support
FlickHub fetches movie data from TMDB (The Movie Database) API.
- Trending and popular movies
- Upcoming releases
- Movie details (cast, crew, synopsis)
- Ratings and vote counts
- Genre information
- Poster and backdrop images
# .env file
VITE_TMDB_API_KEY=your_api_key_hereGet your free API key at themoviedb.org
This product uses the TMDB API but is not endorsed or certified by TMDB.
Zero-backend architecture - all functionality runs in the browser.
- β No server-side data storage
- β Client-side processing only
- β No cookies, trackers, or fingerprinting
- β No third-party analytics or telemetry
- β No user data is collected, stored, or transmitted
- β HTTPS only API communication
All favorites are stored locally using localStorage.
For security concerns, see SECURITY.md.
Contributions welcome.
# 1. Fork the repository
# 2. Create your feature branch
git checkout -b feature/amazing-feature
# 3. Commit your changes
git commit -m 'feat: add amazing feature'
# 4. Push to the branch
git push origin feature/amazing-feature
# 5. Open a Pull RequestPlease read CONTRIBUTING.md for detailed guidelines on:
- Code standards and best practices
- Pull request process
- Bug reporting
- Feature requests
This project adheres to the Contributor Covenant Code of Conduct. By participating, you are expected to uphold this code.
This project is licensed under the MIT License - see the LICENSE file for details.
MIT License
Copyright (c) 2026 Khatai Huseynzada
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
|
React Team Framework |
Tailwind Labs CSS Framework |
TMDB Movie Database |
| Channel | Link |
|---|---|
| π Bug Reports | GitHub Issues |
| π‘ Feature Requests | GitHub Discussions |
| π§ Email | darkdeveloperassistant@gmail.com |
Responses on a best-effort basis
How do I report a bug?
- Check if the issue already exists in GitHub Issues
- If not, create a new issue with:
- Clear description of the problem
- Steps to reproduce
- Expected vs actual behavior
- Screenshots (if applicable)
- Browser and OS information
Can I use this commercially?
Yes! The source code is MIT licensed and can be used commercially.
However, movie data from TMDB API is subject to their terms of use. Review TMDB's licensing requirements for commercial applications.
How do I get a TMDB API key?
- Create an account at themoviedb.org
- Go to Settings β API
- Request an API key (free for non-commercial use)
- Add it to your
.envfile
Where does the movie data come from?
Movie data is fetched from TMDB (The Movie Database) API at runtime.
This product uses the TMDB API but is not endorsed or certified by TMDB.
How is my data stored?
All user data (favorites) is stored locally in your browser using localStorage.
No data is sent to any server.
Β© 2026 Khatai Huseynzada. Licensed under MIT.
