# seedbox-lite **Repository Path**: mirrors_trending/seedbox-lite ## Basic Information - **Project Name**: seedbox-lite - **Description**: A light-weight torrent media center at one place. - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-08-29 - **Last Updated**: 2025-09-13 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # ๐ŸŽฌ SeedBox Lite Stream Torrents Instantly
![SeedBox Lite](https://img.shields.io/badge/SeedBox-Lite-green?style=for-the-badge&logo=leaf) ![Docker](https://img.shields.io/badge/Docker-Enabled-blue?style=for-the-badge&logo=docker) ![React](https://img.shields.io/badge/React-19.1.1-61dafb?style=for-the-badge&logo=react) ![Node.js](https://img.shields.io/badge/Node.js-18+-green?style=for-the-badge&logo=node.js) **A modern, lightweight torrent streaming application with instant playback** SeedBox Lite Screenshot [View all screenshots](https://github.com/hotheadhacker/seedbox-lite/tree/main/screenshots) [Features](#-features) โ€ข [Screenshots](#-screenshots) โ€ข [Quick Start](#-quick-start) โ€ข [Installation](#-installation) โ€ข [Documentation](#-documentation)
## ๐Ÿš€ Overview SeedBox Lite is a cutting-edge torrent streaming platform that allows you to watch movies and TV shows instantly without waiting for complete downloads. Built with modern web technologies, it provides a Netflix-like experience with powerful torrent capabilities. ### โœจ Key Highlights - **๐ŸŽฏ Instant Streaming** - Start watching immediately as the torrent downloads - **๐Ÿ” Password Protection** - Secure access with authentication - **๐Ÿ“ฑ Mobile Optimized** - Perfect responsive design for all devices - **๐ŸŽฅ Smart Video Player** - Advanced player with subtitles and fullscreen support - **โšก Fast Setup** - Deploy in minutes with Docker or PM2 - **๐ŸŒ Cross-Platform** - Works on Windows, macOS, and Linux - **๐ŸŽจ Modern UI** - Clean, intuitive interface inspired by popular streaming services ## ๐ŸŽฏ Features ### Core Streaming Features - **Torrent to Stream** - Convert any movie/TV torrent to instant streaming - **Progress Tracking** - Real-time download progress and cache management - **Smart Caching** - Intelligent caching system with configurable limits - **Multiple Formats** - Support for MP4, MKV, AVI, and more video formats - **Subtitle Support** - Automatic subtitle detection and loading ### User Experience - **Netflix-Style Interface** - Familiar and intuitive design - **Mobile-First Design** - Optimized for smartphones and tablets - **Native Fullscreen** - True fullscreen experience on mobile devices - **Gesture Controls** - Double-tap to fullscreen, intuitive video controls - **Responsive Layout** - Adapts perfectly to any screen size ### Technical Features - **Password Authentication** - Secure access control - **CORS Enabled** - Cross-origin resource sharing for flexible deployment - **Health Monitoring** - Built-in health checks and monitoring - **Production Ready** - Optimized for production deployments - **Docker Support** - Easy containerized deployment - **PM2 Integration** - Process management for Node.js applications ### Mobile Optimizations - **iOS Safari Support** - Native fullscreen using WebKit APIs - **Android Chrome** - Optimized for Android mobile browsers - **Range Requests** - HTTP range support for smooth video seeking - **Mobile Viewport** - Proper viewport handling for app-like experience - **Touch Optimized** - Gesture-friendly video controls ## ๐Ÿ“ธ Screenshots [View all screenshots](https://github.com/hotheadhacker/seedbox-lite/tree/main/screenshots) ## ๐Ÿš€ Quick Start ### Using Docker (Recommended) ```bash # Clone the repository git clone https://github.com/hotheadhacker/seedbox-lite.git cd seedbox-lite # Start with Docker Compose docker-compose up -d # Access the application open http://localhost:5174 ``` ### Using PM2 ```bash # Clone and install dependencies git clone https://github.com/hotheadhacker/seedbox-lite.git cd seedbox-lite # Install backend dependencies cd server && npm install # Install frontend dependencies cd ../client && npm install # Build frontend npm run build # Start with PM2 pm2 start ecosystem.config.js ``` ## ๐Ÿ“‹ Prerequisites ### System Requirements - **Node.js** 18+ - **npm** 8+ - **Docker** 20+ (for Docker deployment) - **PM2** (for PM2 deployment) ### Operating System Support - โœ… Windows 10/11 - โœ… macOS 10.15+ - โœ… Ubuntu 18.04+ - โœ… Debian 10+ - โœ… CentOS 7+ ### Browser Support - โœ… Chrome 90+ - โœ… Firefox 88+ - โœ… Safari 14+ - โœ… Edge 90+ - โœ… Mobile browsers (iOS Safari, Android Chrome) ## ๐Ÿ›  Installation ### Method 1: Docker Deployment (Recommended) #### Step 1: Clone Repository ```bash git clone https://github.com/hotheadhacker/seedbox-lite.git cd seedbox-lite ``` #### Step 2: Configure Environment ```bash # Copy and edit environment variables cp .env.example .env nano .env ``` **Key Environment Variables:** ```bash # Server Configuration NODE_ENV=production SERVER_PORT=3001 ACCESS_PASSWORD=your_secure_password # Frontend Configuration FRONTEND_URL=http://localhost:5174 VITE_API_BASE_URL=http://localhost:3001 # Docker Ports BACKEND_PORT=3001 FRONTEND_PORT=5174 ``` #### Step 3: Deploy ```bash # Start all services docker-compose up -d # Check status docker-compose ps # View logs docker-compose logs -f ``` #### Step 4: Access Application - **Frontend**: http://localhost:5174 - **Backend API**: http://localhost:3001 - **Default Login**: Password set in `ACCESS_PASSWORD` ### Method 2: PM2 Deployment #### Step 1: System Setup ```bash # Install Node.js 18+ curl -fsSL https://deb.nodesource.com/setup_18.x | sudo -E bash - sudo apt-get install -y nodejs # Install PM2 globally npm install -g pm2 ``` #### Step 2: Application Setup ```bash # Clone repository git clone https://github.com/hotheadhacker/seedbox-lite.git cd seedbox-lite # Install backend dependencies cd server npm install cd .. # Install and build frontend cd client npm install npm run build cd .. ``` #### Step 3: Configure Environment ```bash # Backend environment cd server cp .env.example .env nano .env ``` **Backend `.env` Configuration:** ```bash NODE_ENV=production SERVER_PORT=3001 SERVER_HOST=0.0.0.0 ACCESS_PASSWORD=your_secure_password FRONTEND_URL=http://localhost:5174 ``` #### Step 4: Start Services ```bash # Start backend with PM2 cd server pm2 start ecosystem.config.js # Serve frontend with nginx or serve cd ../client/dist npx serve -s . -l 5174 # Or use PM2 for frontend pm2 start "npx serve -s . -l 5174" --name "seedbox-frontend" ``` #### Step 5: PM2 Management ```bash # View running processes pm2 list # View logs pm2 logs # Restart services pm2 restart all # Save PM2 configuration pm2 save pm2 startup ``` ### Method 3: Development Setup #### Step 1: Clone and Install ```bash git clone https://github.com/hotheadhacker/seedbox-lite.git cd seedbox-lite # Install backend dependencies cd server npm install # Install frontend dependencies cd ../client npm install ``` #### Step 2: Configure Development Environment ```bash # Backend environment cd server cp .env.example .env ``` **Development `.env`:** ```bash NODE_ENV=development SERVER_PORT=3000 SERVER_HOST=localhost ACCESS_PASSWORD=seedbox123 FRONTEND_URL=http://localhost:5173 ``` #### Step 3: Start Development Servers ```bash # Terminal 1: Start backend cd server npm run dev # Terminal 2: Start frontend cd client npm run dev ``` ## ๐Ÿงช Testing ### Docker Testing ```bash # Health check curl http://localhost:3001/api/health curl http://localhost:5174/health # API endpoints curl -X POST http://localhost:3001/api/auth/login \ -H "Content-Type: application/json" \ -d '{"password":"your_password"}' # Cache stats curl http://localhost:3001/api/cache/stats ``` ### PM2 Testing ```bash # Check PM2 status pm2 list pm2 logs seedbox-backend pm2 logs seedbox-frontend # Test API endpoints curl http://localhost:3001/api/health curl http://localhost:5174 ``` ### Frontend Testing ```bash cd client npm test # Run Cypress e2e tests npm run test:e2e # Accessibility testing npm run test:a11y ``` ### Backend Testing ```bash cd server npm test # API integration tests npm run test:integration # Load testing npm run test:load ``` ## ๐Ÿ“š Configuration ### Environment Variables Reference #### Backend Variables | Variable | Default | Description | |----------|---------|-------------| | `NODE_ENV` | `production` | Application environment | | `SERVER_PORT` | `3001` | Backend server port | | `SERVER_HOST` | `0.0.0.0` | Backend server host | | `ACCESS_PASSWORD` | `seedbox123` | Authentication password | | `MAX_CACHE_SIZE` | `5GB` | Maximum cache size | | `CLEANUP_INTERVAL` | `1h` | Cache cleanup interval | #### Frontend Variables | Variable | Default | Description | |----------|---------|-------------| | `VITE_API_BASE_URL` | `http://localhost:3001` | Backend API URL | | `FRONTEND_URL` | `http://localhost:5174` | Frontend URL | #### Docker Variables | Variable | Default | Description | |----------|---------|-------------| | `BACKEND_PORT` | `3001` | Docker backend port mapping | | `FRONTEND_PORT` | `5174` | Docker frontend port mapping | ### Advanced Configuration #### Nginx Configuration (Production) ```nginx server { listen 80; server_name your-domain.com; location / { proxy_pass http://localhost:5174; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; } location /api/ { proxy_pass http://localhost:3001; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; } } ``` #### SSL/HTTPS Setup ```bash # Install Certbot sudo apt install certbot python3-certbot-nginx # Get SSL certificate sudo certbot --nginx -d your-domain.com # Auto-renewal sudo crontab -e # Add: 0 12 * * * /usr/bin/certbot renew --quiet ``` ## ๐Ÿ”ง Troubleshooting ### Common Issues #### Port Conflicts ```bash # Check if ports are in use lsof -i :3001 lsof -i :5174 # Kill processes using ports sudo kill -9 $(lsof -ti:3001) sudo kill -9 $(lsof -ti:5174) ``` #### Docker Issues ```bash # Rebuild containers docker-compose down docker-compose up --build # Clear Docker cache docker system prune -a # Check container logs docker-compose logs seedbox-backend docker-compose logs seedbox-frontend ``` #### PM2 Issues ```bash # Reset PM2 pm2 kill pm2 start ecosystem.config.js # Check PM2 logs pm2 logs --lines 50 # Monitor PM2 processes pm2 monit ``` #### Permission Issues ```bash # Fix file permissions sudo chown -R $USER:$USER . chmod +x deploy.sh # Docker permission issues sudo usermod -aG docker $USER newgrp docker ``` #### Mobile Video Issues - Ensure CORS is enabled in backend - Check video format compatibility - Verify range request support - Test with different browsers ## ๐Ÿ“– API Documentation ### Authentication Endpoints ```bash POST /api/auth/login { "password": "your_password" } ``` ### Torrent Endpoints ```bash GET /api/torrents/search?q=movie+name POST /api/torrents/add { "magnetLink": "magnet:..." } ``` ### Streaming Endpoints ```bash GET /api/stream/:torrentId/:fileIndex Range requests supported for video seeking ``` ### Cache Management ```bash GET /api/cache/stats POST /api/cache/clear ``` ## ๐Ÿ›ก Security ### Best Practices - Change default password immediately - Use HTTPS in production - Keep dependencies updated - Enable firewall rules - Regular security audits ### Security Headers The application includes security headers: - X-Frame-Options: SAMEORIGIN - X-Content-Type-Options: nosniff - X-XSS-Protection: 1; mode=block - Referrer-Policy: no-referrer-when-downgrade ## ๐Ÿš€ Deployment ### Production Deployment Checklist - [ ] Change default passwords - [ ] Configure HTTPS/SSL - [ ] Set up monitoring - [ ] Configure backups - [ ] Set up log rotation - [ ] Configure firewall - [ ] Test mobile compatibility - [ ] Verify video streaming - [ ] Test authentication - [ ] Monitor performance ### Scaling For high-traffic deployments: - Use load balancer (nginx/HAProxy) - Scale backend horizontally - Implement Redis for session storage - Use CDN for static assets - Monitor resource usage ## ๐Ÿ“ž Support ### Getting Help - ๐Ÿ“– [Documentation](./docs/) - ๐Ÿ› [Issue Tracker](https://github.com/hotheadhacker/seedbox-lite/issues) - ๐Ÿ’ฌ [Discussions](https://github.com/hotheadhacker/seedbox-lite/discussions) ### Contributing 1. Fork the repository 2. Create feature branch 3. Make changes 4. Add tests 5. Submit pull request ## โš ๏ธ Legal Disclaimer **IMPORTANT: Please read this disclaimer carefully before using SeedBox Lite.** SeedBox Lite is an open-source project provided for educational and personal use only. We do not endorse, promote, or facilitate copyright infringement, illegal streaming, or piracy in any form. This software is designed to be used with legal content only. - We do not host, store, or distribute any content. All torrents and media are accessed through your own connections. - This application is intended for use with content that you have the legal right to access and stream. - Users are solely responsible for how they use this software and for ensuring compliance with all applicable laws in their jurisdiction. - The creators and contributors of SeedBox Lite take no responsibility for how this software is used. - Using torrents to download or share copyrighted materials without permission may be illegal in your country. By using SeedBox Lite, you acknowledge that you understand these terms and agree to use the software responsibly and legally. ## ๐Ÿ“„ License This project is licensed under the **Custom Non-Commercial License** - see the [LICENSE](LICENSE) file for details. **Important License Restrictions:** - This software is provided for personal, educational, and non-commercial use only - Commercial use is strictly prohibited without explicit written permission - Redistribution must include this license and copyright notice - No warranty or liability is provided with this software ## ๐Ÿ™ Acknowledgments - WebTorrent for torrent streaming capabilities - React team for the amazing framework - Docker community for containerization - All contributors and users ---
**Made with โค๏ธ by [hotheadhacker](https://github.com/hotheadhacker)** โญ Star this repo if you find it useful!