mirror of
https://github.com/DumbWareio/DumbDrop.git
synced 2025-11-03 05:23:39 +00:00
949a7fbc2858cf0ae0079b36e40a04b2578605a2
Added MAX_FILE_SIZE variable to limit upload size Added Dark Mode toggle to UI - Default is dark on load Added Folder Upload with nested directories
Dumb Drop
A stupidly simple file upload application that provides a clean, modern interface for dragging and dropping files. Built with Node.js and vanilla JavaScript.
No auth, no storage, no nothing. Just a simple file uploader to drop dumb files into a dumb folder.
Features
- Drag and drop file uploads
- Multiple file selection
- Clean, responsive UI
- File size display
- Docker support
- Configurable file size limits
Future Features
- Camera Upload for Mobile
- Dark Mode toggle
- Enhanced Progress Features (upload speed display, time remaining estimation)
- Drag and Drop Directory Support (Maintain file structure in upload)
Quick Start
Running Locally
- Install dependencies:
npm install
- Set environment variables in
.env:
PORT=3000 # Port to run the server on
MAX_FILE_SIZE=1024 # Maximum file size in MB (default: 1024 MB / 1 GB)
- Start the server:
npm start
Running with Docker
Pull from Docker Hub
# Pull the image
docker pull abite3/dumbdrop:latest
# Run the container
# For Linux/Mac:
docker run -p 3000:3000 -v $(pwd)/local_uploads:/uploads abite3/dumbdrop:latest
# For Windows PowerShell:
docker run -p 3000:3000 -v "${PWD}\local_uploads:/uploads" abite3/dumbdrop:latest
Build Locally
- Build the Docker image:
docker build -t dumbdrop .
- Run the container:
# For Linux/Mac:
docker run -p 3000:3000 -v $(pwd)/local_uploads:/uploads dumbdrop
# For Windows PowerShell:
docker run -p 3000:3000 -v "${PWD}\local_uploads:/uploads" dumbdrop
Usage
- Open your browser and navigate to
http://localhost:3000(unless another domain has been setup) - Drag and drop files into the upload area or click "Browse Files"
- Select one or multiple files
- Click "Upload Files"
- Files will be saved to:
- Local development:
./uploadsdirectory - Docker/Unraid: The directory you mapped to
/uploadsin the container
- Local development:
Technical Details
- Backend: Node.js with Express
- Frontend: Vanilla JavaScript with modern drag-and-drop API
- File handling: Chunked file uploads with configurable size limits
- Containerization: Docker with automated builds via GitHub Actions
Languages
JavaScript
58%
HTML
36.6%
CSS
4.5%
Dockerfile
0.9%