{"id":18111546,"url":"https://github.com/nowayhecodes/rpm","last_synced_at":"2026-04-29T01:34:17.657Z","repository":{"id":260496984,"uuid":"881446111","full_name":"nowayhecodes/rpm","owner":"nowayhecodes","description":"A high-performance Node.js package manager implemented in Rust, focused on speed, safety, and efficiency. RPM handles package installation, dependency resolution, and version control while maintaining compatibility with the Node.js ecosystem.","archived":false,"fork":false,"pushed_at":"2025-02-01T05:29:04.000Z","size":175,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-06T08:21:22.507Z","etag":null,"topics":["npm","npmjs","package-manager","rust"],"latest_commit_sha":null,"homepage":"","language":"Rust","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/nowayhecodes.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"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}},"created_at":"2024-10-31T15:33:19.000Z","updated_at":"2025-02-01T05:29:08.000Z","dependencies_parsed_at":"2024-10-31T17:24:49.296Z","dependency_job_id":"dd5aa199-1f5c-445f-958e-13eca1aecfad","html_url":"https://github.com/nowayhecodes/rpm","commit_stats":null,"previous_names":["nowayhecodes/rpm"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/nowayhecodes/rpm","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nowayhecodes%2Frpm","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nowayhecodes%2Frpm/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nowayhecodes%2Frpm/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nowayhecodes%2Frpm/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nowayhecodes","download_url":"https://codeload.github.com/nowayhecodes/rpm/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nowayhecodes%2Frpm/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32407164,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-28T19:38:08.556Z","status":"ssl_error","status_checked_at":"2026-04-28T19:37:55.688Z","response_time":56,"last_error":"SSL_read: 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":["npm","npmjs","package-manager","rust"],"created_at":"2024-11-01T01:06:12.265Z","updated_at":"2026-04-29T01:34:17.643Z","avatar_url":"https://github.com/nowayhecodes.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n  \u003cimg style=\"width: 196px;\" src=\"https://raw.githubusercontent.com/nowayhecodes/rpm/main/assets/logo.webp\" alt=\"RPM Logo\" /\u003e\n\u003c/div\u003e\n\n\u003cdiv align=\"center\"\u003e\n  \u003ch1\u003eRPM\u003c/h1\u003e\n\u003c/div\u003e\n\nA high-performance Node.js package manager implemented in Rust, focused on speed, safety, and efficiency. RPM handles package installation, dependency resolution, and version control while maintaining compatibility with the Node.js ecosystem.\n\n### Features\n\n- Fast parallel package downloads and installations\n- Secure package verification with hash checking\n- Support for global and local package installations\n- Full compatibility with `package.json` and npm registry\n- Memory-safe implementation leveraging Rust's guarantees\n- Efficient dependency resolution and version management\n\n### Installation\n\n#### From Source\n\n```bash\ngit clone https://github.com/nowayhecodes/rpm\ncd rpm\ncargo install --path .\n```\n\n#### From Cargo\n\n```bash\ncargo install rpm\n```\n\n#### Quick Install (Unix-like systems)\n\n```bash\n# Default installation\ncurl -fsSL https://raw.githubusercontent.com/nowayhecodes/rpm/main/install.sh | sh\n\n# Custom installation directory\nexport RPM_INSTALL_DIR=\"$HOME/.local/bin\"\ncurl -fsSL https://raw.githubusercontent.com/nowayhecodes/rpm/main/install.sh | sh\n```\n\n⚠️ Always inspect installation scripts before running them with root privileges. You can view the script [here](https://raw.githubusercontent.com/nowayhecodes/rpm/main/install.sh).\n\n### Usage\n\n#### Installing Packages\n\nInstall packages locally (in current project):\n```bash\nrpm install express\nrpm install lodash react react-dom\n```\n\nInstall packages globally:\n```bash\nrpm install -g typescript\n```\n\n#### Removing Packages\n\nRemove local packages:\n```bash\nrpm remove express\n```\n\nRemove global packages:\n```bash\nrpm remove -g typescript\n```\n\n#### Configuration\n\nRPM uses the standard `package.json` for project configuration and is fully compatible with existing Node.js projects. It respects:\n\n- Dependencies and devDependencies\n- Version constraints\n- Package scripts\n- Other npm-compatible configurations\n\n### Performance\n\nRPM leverages Rust's concurrency model and safety features to provide:\n\n- Parallel package downloads\n- Efficient disk I/O operations\n- Minimal memory footprint\n- Fast dependency resolution\n\n### Security\n\n- Package integrity verification using SHA-256 checksums\n- Secure downloads over HTTPS\n- Sandboxed package installations\n- Memory-safe operations\n\n### Contributing\n\n1. Fork the repository\n2. Create your feature branch (`git checkout -b feature/amazing-feature`)\n3. Commit your changes (`git commit -m 'Add some amazing feature'`)\n4. Push to the branch (`git push origin feature/amazing-feature`)\n5. Open a Pull Request\n\n### Requirements\n\n- Rust 1.70 or higher\n- Node.js environment (for compatibility)\n\n### License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n### Acknowledgments\n\n- NPM team for the package registry and ecosystem\n- Rust community for excellent async tools and libraries\n- Contributors and users of this project\n\n### Support\n\nFor bugs, questions, and discussions please use the [GitHub Issues](https://github.com/nowayhecodes/rpm/issues).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnowayhecodes%2Frpm","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnowayhecodes%2Frpm","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnowayhecodes%2Frpm/lists"}