{"id":30598280,"url":"https://github.com/leopardslab/nodecloud-cli","last_synced_at":"2025-08-29T22:13:14.361Z","repository":{"id":44104860,"uuid":"116560648","full_name":"leopardslab/nodecloud-cli","owner":"leopardslab","description":"📝 Command line interface for open cloud","archived":false,"fork":false,"pushed_at":"2023-01-04T05:11:39.000Z","size":421,"stargazers_count":29,"open_issues_count":52,"forks_count":32,"subscribers_count":4,"default_branch":"master","last_synced_at":"2023-03-04T00:18:49.728Z","etag":null,"topics":["aws","cli","gcp","hacktoberfest","javascript"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/leopardslab.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}},"created_at":"2018-01-07T11:42:55.000Z","updated_at":"2023-01-12T21:42:53.000Z","dependencies_parsed_at":"2023-02-01T22:32:01.254Z","dependency_job_id":null,"html_url":"https://github.com/leopardslab/nodecloud-cli","commit_stats":null,"previous_names":[],"tags_count":null,"template":null,"template_full_name":null,"purl":"pkg:github/leopardslab/nodecloud-cli","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leopardslab%2Fnodecloud-cli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leopardslab%2Fnodecloud-cli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leopardslab%2Fnodecloud-cli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leopardslab%2Fnodecloud-cli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/leopardslab","download_url":"https://codeload.github.com/leopardslab/nodecloud-cli/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leopardslab%2Fnodecloud-cli/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272772759,"owners_count":24990514,"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","status":"online","status_checked_at":"2025-08-29T02:00:10.610Z","response_time":87,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["aws","cli","gcp","hacktoberfest","javascript"],"created_at":"2025-08-29T22:13:13.619Z","updated_at":"2025-08-29T22:13:14.350Z","avatar_url":"https://github.com/leopardslab.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# nodecloud-cli\n\nnodecloud-cli is an unified command line interface for open cloud based on [nodecloud](https://github.com/cloudlibz/nodecloud). nodecloud-cli supports cloud providers like AWS, Azure, GCP and many more.\n\n## 🚀 Install\n\nUsing npm\n\n```\n$ npm install -g nodecloud-cli\n```\n\nUsing yarn\n\n```\n$ yarn global add nodecloud-cli\n```\n\n## 📣 Usage\n\nInitialize cli with selected cloud provider\n\n```\n$ nc --init\n```\n\n**Compute** :computer:\n\nCreate virtual machine instance\n\n```\n$ nc --compute create --type aws --vm-name=\"aws-ec2\"\n```\n\nList all available virtual machine instance\n\n```\n$ nc --compute list --type aws\n```\n\nDelete selected virtual machine instance\n\n```\n$ nc --compute delete --type aws --in-id=\"Instance_ID\"\n```\n\nTurn on virtual machine instance\n\n```\n$ nc --compute start --type aws --in-id=\"Instance_ID\"\n```\n\nShut down virtual machine instance\n\n```\n$ nc --compute stop --type aws --in-id=\"Instance_ID\"\n```\n\nReboot virtual machine instance\n\n```\n$ nc --compute reboot --type aws --in-id=\"Instance_ID\"\n```\n\n**Network** :satellite:\n\nCreating load balancer\n\n```\n$ nc --network create --type=\"aws\" --service=\"lb\" --name=\"myelb\" --port=\"80\"\n```\n\nDeleting load balancer\n\n```\n$ nc --network delete --type=\"aws\" --service=\"lb\" --name=\"myelb\"\n```\n\nList load balancer\n\n```\n$ nc --network list --type=\"aws\" --service=\"lb\"\n```\n\nAdd tag to load balancer\n\n```\n$ nc --network tag --type=\"aws\" --service=\"lb\" --name=\"myelb\" --key=\"Lv\" --value=\"one\"\n```\n\nRemove tag from load balancer\n\n```\n$ nc --network detag --type=\"aws\" --service=\"lb\" --name=\"myelb\" --key=\"Lv\"\n```\n\n**Storage** :floppy_disk:\n\nCreating Storage bucket\n\n```\n$ nc --storage create --type aws  --st-name=\"aws-ec2\"\n```\n\nDeleting Storage bucket\n\n```\n$ nc --storage delete --type aws  --st-name=\"Instance_ID\"\n```\n\nList all Storage buckets\n\n```\n$ nc --storage list --type aws\n```\n\nUpload to Storage bucket\n\n```\n$ nc --storage upload --type aws  --st-name=\"Instance_ID\" --file=\"file_path\"\n```\n\n**Identity Access Management** :key:\n\nCreating Group\n\n```\n$ nc --iam create --type aws  --gp-name=\"UserGroup01\"\n```\n\nDeleting Group\n\n```\n$ nc --iam delete --type aws  --gp-name=\"UserGroup01\"\n```\n\nAttach Resource\n\n```\n$ nc --iam attach --type aws  --gp-name`=\"UserGroup01\"` --ar-name=\"resource01\"\n```\n\nDetach Resource\n\n```\n$ nc --iam detach --type aws  --gp-name`=\"UserGroup01\"` --ar-name=\"resource01\"\n```\n\n## 💻 Development setup\n\n```\n$ git clone https://github.com/cloudlibz/nodecloud-cli\n$ cd nodecloud-cli\n$ yarn install\n```\n\n## ✒️ Run unit tests\n\n```\n$ yarn test\n```\n\n## 📜 License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fleopardslab%2Fnodecloud-cli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fleopardslab%2Fnodecloud-cli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fleopardslab%2Fnodecloud-cli/lists"}