{"id":36800201,"url":"https://github.com/mxcd/gitops-vscode-extension","last_synced_at":"2026-01-12T13:33:29.200Z","repository":{"id":220344270,"uuid":"751354806","full_name":"mxcd/gitops-vscode-extension","owner":"mxcd","description":null,"archived":false,"fork":false,"pushed_at":"2024-03-09T11:44:52.000Z","size":222,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-04-21T00:15:52.467Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/mxcd.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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}},"created_at":"2024-02-01T12:55:18.000Z","updated_at":"2024-02-06T20:34:47.000Z","dependencies_parsed_at":"2024-02-07T13:46:33.763Z","dependency_job_id":null,"html_url":"https://github.com/mxcd/gitops-vscode-extension","commit_stats":null,"previous_names":["mxcd/gitops-vscode-extension"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mxcd/gitops-vscode-extension","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mxcd%2Fgitops-vscode-extension","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mxcd%2Fgitops-vscode-extension/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mxcd%2Fgitops-vscode-extension/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mxcd%2Fgitops-vscode-extension/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mxcd","download_url":"https://codeload.github.com/mxcd/gitops-vscode-extension/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mxcd%2Fgitops-vscode-extension/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28339182,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-12T12:22:26.515Z","status":"ssl_error","status_checked_at":"2026-01-12T12:22:10.856Z","response_time":98,"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":[],"created_at":"2026-01-12T13:33:29.058Z","updated_at":"2026-01-12T13:33:29.167Z","avatar_url":"https://github.com/mxcd.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"```bash\n#           _ __                                                __                  __                  _           \n#    ____ _(_) /_____  ____  _____   _   ________________  ____/ /__     ___  _  __/ /____  ____  _____(_)___  ____ \n#   / __ `/ / __/ __ \\/ __ \\/ ___/  | | / / ___/ ___/ __ \\/ __  / _ \\   / _ \\| |/_/ __/ _ \\/ __ \\/ ___/ / __ \\/ __ \\\n#  / /_/ / / /_/ /_/ / /_/ (__  )   | |/ (__  ) /__/ /_/ / /_/ /  __/  /  __/\u003e  \u003c/ /_/  __/ / / (__  ) / /_/ / / / /\n#  \\__, /_/\\__/\\____/ .___/____/    |___/____/\\___/\\____/\\__,_/\\___/   \\___/_/|_|\\__/\\___/_/ /_/____/_/\\____/_/ /_/ \n# /____/           /_/\n```\n\n# GitOps VSCode Extension\n\nA collection of useful VS Code features in addition to the [GitOps Cli](https://github.com/mxcd/gitops-cli)\n\n## Features\n\nTODO: detail the features of the extension\n\n## Development Setup\n\n### Install PNPM\n\nPNPM is required to install the dependencies of the extension.\n\n```bash\nnpm install -g pnpm\n```\n\nIn the root directory of the extension, run the following command to install the dependencies.\n\n```bash\npnpm install\n```\n\n### Update PNPM\n\nOn Linux or macOS\n\n```bash\npnpm add -g pnpm\nor \nnpm install -g pnpm\n```\n\nor on windows\n\n```powershell\niwr https://get.pnpm.io/install.ps1 -useb | iex\n```\n\nCheck the version\n\n```bash\npnpm -v\n```\n\n### Install the Yo Generator\n\n```bash\npnpm install -g yo generator-code\n```\n\n### Start the Generator\n\nDone once, please skip if you are just cloning the repository.\n\n```bash\nyo code\n```\n\n# EXTRA RESOURCES\n\n## Welcome to your VS Code Extension\n\n## What's in the folder\n\n* This folder contains all of the files necessary for your extension.\n* `package.json` - this is the manifest file in which you declare your extension and command.\n  * The sample plugin registers a command and defines its title and command name. With this information VS Code can show the command in the command palette. It doesn’t yet need to load the plugin.\n* `extension.js` - this is the main file where you will provide the implementation of your command.\n  * The file exports one function, `activate`, which is called the very first time your extension is activated (in this case by executing the command). Inside the `activate` function we call `registerCommand`.\n  * We pass the function containing the implementation of the command as the second parameter to `registerCommand`.\n\n## Get up and running straight away\n\n* Press `F5` to open a new window with your extension loaded.\n* Run your command from the command palette by pressing (`Ctrl+Shift+P` or `Cmd+Shift+P` on Mac) and typing `Hello World`.\n* Set breakpoints in your code inside `extension.js` to debug your extension.\n* Find output from your extension in the debug console.\n\n## Make changes\n\n* You can relaunch the extension from the debug toolbar after changing code in `extension.js`.\n* You can also reload (`Ctrl+R` or `Cmd+R` on Mac) the VS Code window with your extension to load your changes.\n\n## Explore the API\n\n* You can open the full set of our API when you open the file `node_modules/@types/vscode/index.d.ts`.\n\n## Run tests\n\n* Install the [Extension Test Runner](https://marketplace.visualstudio.com/items?itemName=ms-vscode.extension-test-runner)\n* Open the Testing view from the activity bar and click the Run Test\" button, or use the hotkey `Ctrl/Cmd + ; A`\n* See the output of the test result in the Test Results view.\n* Make changes to `test/extension.test.js` or create new test files inside the `test` folder.\n  * The provided test runner will only consider files matching the name pattern `**.test.js`.\n  * You can create folders inside the `test` folder to structure your tests any way you want.\n\n## Go further\n\n* [Follow UX guidelines](https://code.visualstudio.com/api/ux-guidelines/overview) to create extensions that seamlessly integrate with VS Code's native interface and patterns.\n* [Publish your extension](https://code.visualstudio.com/api/working-with-extensions/publishing-extension) on the VS Code extension marketplace.\n* Automate builds by setting up [Continuous Integration](https://code.visualstudio.com/api/working-with-extensions/continuous-integration).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmxcd%2Fgitops-vscode-extension","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmxcd%2Fgitops-vscode-extension","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmxcd%2Fgitops-vscode-extension/lists"}