{"id":29176505,"url":"https://github.com/a8851625/s3manager","last_synced_at":"2026-04-27T17:32:59.881Z","repository":{"id":300938464,"uuid":"1007651705","full_name":"a8851625/s3manager","owner":"a8851625","description":"A web-based S3 file manager with Deno backend. Features: bucket/file management (list/create/delete), multi-file upload, folder operations, and AWS credential authentication. Runs locally with security-first design - credentials stay on your machine. Lightweight, Docker-ready","archived":false,"fork":false,"pushed_at":"2025-06-25T03:52:12.000Z","size":184,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-07-01T17:07:27.591Z","etag":null,"topics":["deno","minio","s3","ui"],"latest_commit_sha":null,"homepage":"","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/a8851625.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-06-24T10:16:37.000Z","updated_at":"2025-06-25T03:52:15.000Z","dependencies_parsed_at":"2025-06-24T11:47:17.451Z","dependency_job_id":null,"html_url":"https://github.com/a8851625/s3manager","commit_stats":null,"previous_names":["a8851625/s3manager"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/a8851625/s3manager","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a8851625%2Fs3manager","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a8851625%2Fs3manager/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a8851625%2Fs3manager/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a8851625%2Fs3manager/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/a8851625","download_url":"https://codeload.github.com/a8851625/s3manager/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/a8851625%2Fs3manager/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32348048,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-27T17:12:42.749Z","status":"ssl_error","status_checked_at":"2026-04-27T17:12:41.658Z","response_time":128,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["deno","minio","s3","ui"],"created_at":"2025-07-01T17:01:53.713Z","updated_at":"2026-04-27T17:32:59.875Z","avatar_url":"https://github.com/a8851625.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# S3 Manager (Deno Backend)\n\nA web-based interface for managing AWS S3 buckets and objects with a Deno backend.\n\n![Application Screenshot](screenshot.png)\n\n## Features\n\n- **Bucket Management**:\n  - List all S3 buckets in your account\n  - Create new buckets\n  - Navigate through bucket contents\n  - Delete buckets (when empty)\n\n- **File Operations**:\n  - Browse files and folders\n  - Upload multiple files via drag-and-drop or file selection\n  - Create new folders\n  - Delete files and folders\n  - View file details (size, last modified)\n\n- **Authentication**:\n  - Connect using AWS credentials (access key + secret key)\n  - Supports custom S3-compatible endpoints\n  - Credentials persisted locally (optional)\n  - Supports all AWS regions\n\n## Security Notice\n\n⚠️ **Important Security Information**\nYour AWS credentials will be sent to a locally running Deno backend. Please ensure:\n- The backend environment is secure\n- Never expose the backend to public networks\n- Use minimal required permissions for your access key\n\n## Getting Started\n\n### Prerequisites\n\n- [Deno](https://deno.land/) installed on your system\n- AWS credentials with appropriate S3 permissions\n\n### Installation\n\n1. Clone this repository\n2. Start the Deno backend server:\n   ```bash\n   deno run --allow-net --allow-env server.ts\n   ```\n3. Open `index.html` in your web browser\n\n### Configuration\n\nConfigure your AWS credentials either:\n- Directly in the web interface\n- By setting environment variables for the Deno backend:\n  ```\n  AWS_ACCESS_KEY_ID\n  AWS_SECRET_ACCESS_KEY\n  AWS_REGION (optional)\n  AWS_ENDPOINT (for S3-compatible services)\n  ```\n\n## Architecture\n\n```\nFrontend (HTML/CSS/JS)  ←HTTP→  Deno Backend  ←AWS SDK→  AWS S3\n```\n\n- **Frontend**: Pure client-side web interface\n- **Backend**: Deno server handling:\n  - Authentication\n  - S3 API calls\n  - File upload processing\n  - Security validation\n\n## Usage\n\n1. Connect with your AWS credentials\n2. Browse buckets and files\n3. Perform operations using:\n   - Main toolbar buttons\n   - Right-click context menu (future)\n   - Keyboard shortcuts (future)\n\n## Development\n\nTo extend this project:\n\n```bash\n# Run development server with watch mode\ndeno run --allow-net --allow-sys --allow-env --allow-read --allow-write src/main.ts\n```\n\nFor Docker development:\n\n# Build with development flags\n```\ndocker build -t s3-manager-dev  .\n# Run with volume mounting for live reload\ndocker run -p 8000:8000 -v $(pwd):/app s3-manager-dev\n```\n\nFeatures to consider adding:\n- File previews\n- Batch operations\n- Permission management\n- Sharing URLs\n- Search functionality\n\n## License\n\nMIT License - See [LICENSE](LICENSE) for details.\n```\n\nNotes:\n1. You might want to add an actual screenshot as `screenshot.png`\n2. Adjust the backend filename (`server.ts`) to match your actual implementation\n3. Add any additional security considerations specific to your implementation\n4. The structure follows standard open-source project documentation practices\n5. Consider adding a CONTRIBUTING.md if you want others to contribute","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fa8851625%2Fs3manager","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fa8851625%2Fs3manager","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fa8851625%2Fs3manager/lists"}