{"id":23452296,"url":"https://github.com/maxam2017/installr","last_synced_at":"2025-04-10T16:55:41.503Z","repository":{"id":222526065,"uuid":"757539150","full_name":"maxam2017/installr","owner":"maxam2017","description":"Intelligent package installation tool. macOS only (for now)","archived":false,"fork":false,"pushed_at":"2024-02-15T12:34:07.000Z","size":92,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-02-15T20:41:38.158Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://installr-docs.vercel.app/","language":"TypeScript","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/maxam2017.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-02-14T17:42:42.000Z","updated_at":"2024-02-18T16:02:55.000Z","dependencies_parsed_at":"2025-02-15T20:31:19.460Z","dependency_job_id":"92bf61e2-31fa-4ae4-a65c-a4f5c7d5b65d","html_url":"https://github.com/maxam2017/installr","commit_stats":null,"previous_names":["maxam2017/installr"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxam2017%2Finstallr","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxam2017%2Finstallr/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxam2017%2Finstallr/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxam2017%2Finstallr/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/maxam2017","download_url":"https://codeload.github.com/maxam2017/installr/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248257915,"owners_count":21073825,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":[],"created_at":"2024-12-24T01:14:49.961Z","updated_at":"2025-04-10T16:55:41.481Z","avatar_url":"https://github.com/maxam2017.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003ch1 align=\"center\"\u003e\u003e installr\u003c/h1\u003e\n  \u003cp align=\"center\"\u003e\n    \u003cimg src=\"https://github.com/maxam2017/installr/assets/25841814/1c1c0f3b-edf1-4673-a2d0-981b260d9249\" alt=\"installr logo\" width=\"200\"\u003e\n  \u003c/p\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://github.com/maxam2017/installr/releases\"\u003e\u003cimg src=\"https://img.shields.io/github/release/maxam2017/installr.svg\" alt=\"GitHub Release\"\u003e\u003c/a\u003e\n  \u003ca href=\"https://github.com/maxam2017/installr/actions/workflows/ci.yml\"\u003e\u003cimg src=\"https://github.com/maxam2017/installr/actions/workflows/ci.yml/badge.svg\" alt=\"CI\"\u003e\u003c/a\u003e\n  \u003ca href=\"\"\u003e\u003cimg src=\"https://img.shields.io/badge/language-typescript-blue?style\" alt=\"Language\"\u003e\u003c/a\u003e\n  \u003ca href=\"\"\u003e\u003cimg src=\"https://img.shields.io/github/license/maxam2017/productive-box\" alt=\"Lincense\"\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n\ninstallr is a performant package installation tool designed to simplify the process of managing and installing packages while automatically resolving dependencies.\n\nIt currently supports on macOS 🍎 only.\n\n## What's included\n\n- 🤖 **Automated Installation**: installr automatically installs specified packages and resolves their dependencies, ensuring that packages are installed in the correct order.\n\n- ⚡️ **Performant Installation**: installr is designed to be fast and efficient, installing packages in parallel to minimize installation time.\n\n- 🧾 **Simple Configuration**: Define your packages and their dependencies in a JSON or YAML configuration file.\n\n## Installation\n\nNo dependencies required. Just download the latest binary from the [releases page](https://github.com/maxam2017/installr/releases).\n\nAfter downloading the binary, make it executable by running the following command:\n\n```bash\nchmod +x installr\n```\n\nIf you want to use installr from anywhere, move it to a directory in your PATH, such as `/usr/local/bin`:\n\n```bash\nmv installr /usr/local/bin\n```\n\n## Usage\nCreate a configuration file (config.json or config.yaml) with a list of packages and their dependencies. For example:\n\n```json\n{\n  \"packages\": [\n    {\n      \"name\": \"packageA\",\n      \"installScript\": [\"npm install -g packageA\"],\n      \"dependencies\": [\"packageB\", \"packageC\"]\n    },\n    {\n      \"name\": \"packageB\",\n      \"installScript\": [\"npm install -g packageB\"]\n    },\n    {\n      \"name\": \"packageC\",\n      \"installScript\": [\"npm install -g packageC\"],\n    }\n  ]\n}\n```\n\nRun installr with your configuration file:\n\n```bash\ninstallr config.json\n```\n\ninstallr will automatically install the specified packages and handle dependencies. (In this example, packageB and packageC will be installed before packageA.)\n\nFor more details about the configuration file, see the [schema.json file](assets/schema.json).\n\n## Options\n\n- **-h**, **--help**: Show help message.\n\n## License\n\nDistributed under the MIT License - see `LICENSE` file for detail.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaxam2017%2Finstallr","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmaxam2017%2Finstallr","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaxam2017%2Finstallr/lists"}