Stream Torrents Instantly
A modern, lightweight torrent streaming application with instant playback

Features β’ Screenshots β’ Quick Start β’ Installation β’ Documentation
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.
- π― 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
- 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
- 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
- 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
- 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
# 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
# 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
- Node.js 18+
- npm 8+
- Docker 20+ (for Docker deployment)
- PM2 (for PM2 deployment)
- β Windows 10/11
- β macOS 10.15+
- β Ubuntu 18.04+
- β Debian 10+
- β CentOS 7+
- β Chrome 90+
- β Firefox 88+
- β Safari 14+
- β Edge 90+
- β Mobile browsers (iOS Safari, Android Chrome)
git clone https://github.com/hotheadhacker/seedbox-lite.git
cd seedbox-lite
# Copy and edit environment variables
cp .env.example .env
nano .env
Key Environment Variables:
# 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
# Start all services
docker-compose up -d
# Check status
docker-compose ps
# View logs
docker-compose logs -f
- Frontend: http://localhost:5174
- Backend API: http://localhost:3001
- Default Login: Password set in
ACCESS_PASSWORD
# 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
# 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 ..
# Backend environment
cd server
cp .env.example .env
nano .env
Backend .env
Configuration:
NODE_ENV=production
SERVER_PORT=3001
SERVER_HOST=0.0.0.0
ACCESS_PASSWORD=your_secure_password
FRONTEND_URL=http://localhost:5174
# 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"
# View running processes
pm2 list
# View logs
pm2 logs
# Restart services
pm2 restart all
# Save PM2 configuration
pm2 save
pm2 startup
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
# Backend environment
cd server
cp .env.example .env
Development .env
:
NODE_ENV=development
SERVER_PORT=3000
SERVER_HOST=localhost
ACCESS_PASSWORD=seedbox123
FRONTEND_URL=http://localhost:5173
# Terminal 1: Start backend
cd server
npm run dev
# Terminal 2: Start frontend
cd client
npm run dev
# 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
# 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
cd client
npm test
# Run Cypress e2e tests
npm run test:e2e
# Accessibility testing
npm run test:a11y
cd server
npm test
# API integration tests
npm run test:integration
# Load testing
npm run test:load
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 |
Variable | Default | Description |
---|---|---|
VITE_API_BASE_URL |
http://localhost:3001 |
Backend API URL |
FRONTEND_URL |
http://localhost:5174 |
Frontend URL |
Variable | Default | Description |
---|---|---|
BACKEND_PORT |
3001 |
Docker backend port mapping |
FRONTEND_PORT |
5174 |
Docker frontend port mapping |
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;
}
}
# 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
# 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)
# 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
# Reset PM2
pm2 kill
pm2 start ecosystem.config.js
# Check PM2 logs
pm2 logs --lines 50
# Monitor PM2 processes
pm2 monit
# Fix file permissions
sudo chown -R $USER:$USER .
chmod +x deploy.sh
# Docker permission issues
sudo usermod -aG docker $USER
newgrp docker
- Ensure CORS is enabled in backend
- Check video format compatibility
- Verify range request support
- Test with different browsers
POST /api/auth/login
{
"password": "your_password"
}
GET /api/torrents/search?q=movie+name
POST /api/torrents/add
{
"magnetLink": "magnet:..."
}
GET /api/stream/:torrentId/:fileIndex
Range requests supported for video seeking
GET /api/cache/stats
POST /api/cache/clear
- Change default password immediately
- Use HTTPS in production
- Keep dependencies updated
- Enable firewall rules
- Regular security audits
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
- 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
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
- π Documentation
- π Issue Tracker
- π¬ Discussions
- Fork the repository
- Create feature branch
- Make changes
- Add tests
- Submit pull request
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.
This project is licensed under the Custom Non-Commercial License - see the 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
- WebTorrent for torrent streaming capabilities
- React team for the amazing framework
- Docker community for containerization
- All contributors and users
Made with β€οΈ by hotheadhacker
β Star this repo if you find it useful!