{"id":37187250,"url":"https://github.com/elastic-io/plus","last_synced_at":"2026-01-14T21:45:27.154Z","repository":{"id":305637817,"uuid":"1023437809","full_name":"elastic-io/plus","owner":"elastic-io","description":"A modern, high-performance package repository server written in Go","archived":false,"fork":false,"pushed_at":"2025-09-22T07:23:09.000Z","size":121,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-09-22T09:26:29.368Z","etag":null,"topics":["artifacts-repository","deb-packages","high-performance","linux-server","rpm-packages"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/elastic-io.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-07-21T07:00:22.000Z","updated_at":"2025-09-22T07:23:12.000Z","dependencies_parsed_at":"2025-07-21T09:16:32.779Z","dependency_job_id":"990f84a9-e554-41bf-8929-9ff0540bbd8c","html_url":"https://github.com/elastic-io/plus","commit_stats":null,"previous_names":["elastic-io/plus"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/elastic-io/plus","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elastic-io%2Fplus","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elastic-io%2Fplus/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elastic-io%2Fplus/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elastic-io%2Fplus/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/elastic-io","download_url":"https://codeload.github.com/elastic-io/plus/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elastic-io%2Fplus/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28436191,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T21:32:52.117Z","status":"ssl_error","status_checked_at":"2026-01-14T21:32:33.442Z","response_time":107,"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":["artifacts-repository","deb-packages","high-performance","linux-server","rpm-packages"],"created_at":"2026-01-14T21:45:26.391Z","updated_at":"2026-01-14T21:45:27.144Z","avatar_url":"https://github.com/elastic-io.png","language":"Go","readme":"# Plus Artifacts Server\n\nA modern, high-performance package repository server written in Go, designed to replace traditional nginx+createrepo solutions with a unified, cloud-native approach.\n\n[![Go Report Card](https://goreportcard.com/badge/github.com/elastic-io/plus)](https://goreportcard.com/report/github.com/elastic-io/plus)\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n[![Docker Pulls](https://img.shields.io/docker/pulls/elastic-io/plus)](https://hub.docker.com/r/elastic-io/plus)\n\n## 🚀 Features\n\n### Core Capabilities\n- **Multi-format Support**: RPM and DEB packages\n- **RESTful API**: Complete package management via HTTP API\n- **Real-time Metadata**: Automatic repository metadata generation\n- **Batch Operations**: Efficient bulk package uploads\n- **Built-in Monitoring**: Metrics and health checks\n- **Web Interface**: Modern UI for repository management\n- **High Performance**: Built with fasthttp for maximum throughput\n\n### Storage Options\n- **Local Storage**: Direct filesystem storage\n- **Cloud Storage**: S3-compatible object storage (planned)\n- **Flexible Backend**: Pluggable storage architecture\n\n## 🎯 Why Choose Plus Over nginx+createrepo?\n\n| Feature | nginx+createrepo | Plus | Advantage |\n|---------|------------------|------|-----------|\n| Static File Serving | ✅ nginx | ✅ fasthttp | Comparable performance, lighter weight |\n| Metadata Generation | ✅ createrepo_c | ✅ Pure Go | No external dependencies |\n| Package Upload | ❌ Custom scripts needed | ✅ Built-in API | Simpler integration |\n| Batch Operations | ❌ Manual scripting | ✅ Native support | Higher efficiency |\n| Real-time Monitoring | ❌ Additional tools required | ✅ Built-in metrics | Out-of-the-box |\n| Multi-format Support | ❌ RPM only | ✅ RPM+DEB | More flexible |\n| Container Ready | ❌ Complex setup | ✅ Single binary | Cloud-native |\n\n\n## 📦 Quick Start\n\n### Using Docker (Recommended)\n\n```bash\n# Pull and run\ndocker run -d \\\n  --name plus-server \\\n  -p 8080:8080 \\\n  -v $(pwd)/storage:/app/storage \\\n  elastic-io/plus:latest\n\n# Or use docker-compose\ncurl -O https://raw.githubusercontent.com/elastic-io/plus/main/docker-compose.yml\ndocker-compose up -d\n```\n\n### Binary Installation\n\n```bash\n# Download latest release\nwget https://github.com/elastic-io/plus/releases/latest/download/plus-linux-amd64\nchmod +x plus-linux-amd64\nmv plus-linux-amd64 /usr/local/bin/plus\n\n# Run with default config\nplus --config config.yaml\n```\n\n### From Source\n\n```bash\ngit clone https://github.com/elastic-io/plus.git\ncd plus\n\n# Build using make\nmake build      # Build for your current platform\nmake build-all  # Build for all supported platforms\n\n# Run the application\n./bin/plus --config config.yaml\n```\n\n### Using Make Commands\n\n```bash\nmake deps       # Install dependencies\nmake test       # Run tests\nmake build-amd  # Build for Linux AMD64\nmake build-arm  # Build for Linux ARM\nmake clean      # Clean build artifacts\nmake help       # Show all available commands\n```\n\n\n## ⚙️ Configuration\n\n### Basic Configuration\n\n```yaml\n# config.yaml\nserver:\n  listen: \":8080\"\n  dev_mode: false\n  \nstorage:\n  type: \"local\"\n  path: \"./storage\"\n  \nlogging:\n  level: \"info\"\n  format: \"json\"\n```\n\n## 🔧 API Usage\n\n### Repository Management\n\n```bash\n# List all repositories\ncurl http://localhost:8080/repos\n\n# Create a new repository\ncurl -X POST http://localhost:8080/repos \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"name\": \"my-repo\", \"path\": \"centos/7\"}'\n\n# Get repository information\ncurl http://localhost:8080/repo/my-repo\n\n# Delete repository\ncurl -X DELETE http://localhost:8080/repo/my-repo\n```\n\n### Package Management\n\n```bash\n# Upload a package\ncurl -X POST http://localhost:8080/repo/my-repo/upload \\\n  -F \"file=@package.rpm\"\n\n# Download a package\ncurl -O http://localhost:8080/repo/my-repo/rpm/package.rpm\n\n# Get package checksum\ncurl http://localhost:8080/repo/my-repo/checksum/package.rpm\n```\n\n### Repository Operations\n\n```bash\n# Refresh repository metadata\ncurl -X POST http://localhost:8080/repo/my-repo/refresh\n\n# Browse repository files\ncurl http://localhost:8080/repo/my-repo/files/\n```\n\n## 🖥️ Web Interface\n\nAccess the modern web interface at `http://localhost:8080/static/`\n\nFeatures:\n- Repository browsing and management\n- Package upload with drag-and-drop\n- Real-time metrics dashboard\n- Batch operations interface\n\n## 📊 Monitoring \u0026 Metrics\n\n### Health Checks\n\n```bash\n# Basic health check\ncurl http://localhost:8080/health\n\n# Readiness check\ncurl http://localhost:8080/ready\n\n# Detailed metrics\ncurl http://localhost:8080/metrics\n```\n\n## 🐳 Container Deployment\n\n### Docker Compose\n\n```yaml\nversion: '3.8'\nservices:\n  plus:\n    image: elastic-io/plus:latest\n    ports:\n      - \"8080:8080\"\n    volumes:\n      - ./storage:/app/storage\n      - ./config.yaml:/app/config.yaml\n    environment:\n      - PLUS_CONFIG=/app/config.yaml\n    restart: unless-stopped\n    healthcheck:\n      test: [\"CMD\", \"curl\", \"-f\", \"http://localhost:8080/health\"]\n      interval: 30s\n      timeout: 10s\n      retries: 3\n```\n\n## 🔄 Migration from nginx+createrepo\n\nSee our [Migration Guide](docs/migration.md) for detailed instructions on migrating from traditional nginx+createrepo setups.\n\n## 📈 Performance Benchmarks\n\n### Throughput Comparison\n\n| Scenario | nginx+createrepo | Plus | Improvement |\n|----------|------------------|------|-------------|\n| Static File Serving | 10,000-15,000 QPS | 15,000-25,000 QPS | +67% |\n| Package Upload | Manual process | 500-1000 uploads/min | ∞ |\n| Metadata Generation | 30-60 seconds | 1-5 seconds | 10x faster |\n| Memory Usage | ~200MB (nginx+tools) | ~50MB | 75% less |\n\n## 🤝 Contributing\n\nWe welcome contributions! Please see our [Contributing Guide](CONTRIBUTING.md) for details.\n\n## 📚 Documentation\n\n- [API Reference](docs/api.md)\n- [Development Guide](docs/development.md)\n- [Migration Guide](docs/migration.md)\n\n## 🗺️ Roadmap\n\n### v1.1.0 (Next Release)\n- [ ] Authentication and authorization\n- [ ] S3-compatible storage backend\n- [ ] Package signing verification\n- [ ] Advanced metrics and alerting\n\n### v1.2.0\n- [ ] Multi-tenant support\n- [ ] Package vulnerability scanning\n- [ ] GraphQL API\n\n## 📄 License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## 🆘 Support\n\n- **Documentation**: [docs/](docs/)\n- **Issues**: [GitHub Issues](https://github.com/elastic-io/plus/issues)\n- **Discussions**: [GitHub Discussions](https://github.com/elastic-io/plus/discussions)\n\n## 🙏 Acknowledgments\n\n- Built with [fasthttp](https://github.com/valyala/fasthttp) for high performance\n- Inspired by modern package management needs\n- Thanks to all contributors and users\n\n---\n\n**Plus Artifacts Server** - Modern package repository management made simple.","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Felastic-io%2Fplus","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Felastic-io%2Fplus","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Felastic-io%2Fplus/lists"}