{"id":32124288,"url":"https://github.com/coldbox/vscode-coldbox","last_synced_at":"2025-12-11T22:09:48.629Z","repository":{"id":54301835,"uuid":"105669546","full_name":"ColdBox/vscode-coldbox","owner":"ColdBox","description":"VSCode support for ColdBox","archived":false,"fork":false,"pushed_at":"2023-10-19T09:32:41.000Z","size":610,"stargazers_count":6,"open_issues_count":4,"forks_count":4,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-10-20T21:49:17.239Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/ColdBox.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":".github/FUNDING.YML","license":"LICENSE","code_of_conduct":".github/CODE_OF_CONDUCT.MD","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":".github/SECURITY.md","support":".github/SUPPORT.md","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},"funding":{"patreon":"ortussolutions"}},"created_at":"2017-10-03T15:37:16.000Z","updated_at":"2023-12-01T14:30:21.000Z","dependencies_parsed_at":"2022-08-13T11:30:22.985Z","dependency_job_id":"a6845d66-8a01-4023-bb31-aea6d629dd9e","html_url":"https://github.com/ColdBox/vscode-coldbox","commit_stats":null,"previous_names":["ortus-solutions/vscode-coldbox"],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/ColdBox/vscode-coldbox","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ColdBox%2Fvscode-coldbox","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ColdBox%2Fvscode-coldbox/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ColdBox%2Fvscode-coldbox/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ColdBox%2Fvscode-coldbox/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ColdBox","download_url":"https://codeload.github.com/ColdBox/vscode-coldbox/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ColdBox%2Fvscode-coldbox/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":280166619,"owners_count":26283782,"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-10-20T02:00:06.978Z","response_time":62,"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":[],"created_at":"2025-10-20T21:49:22.278Z","updated_at":"2025-10-20T21:49:24.678Z","avatar_url":"https://github.com/ColdBox.png","language":"TypeScript","funding_links":["https://patreon.com/ortussolutions"],"categories":[],"sub_categories":[],"readme":"# A ColdBox Platform Bundle for Visual Studio Code\n\nGet the latest Visual Studio Code from https://code.visualstudio.com/.\n\n## Supported Target Platforms\n\n- ColdBox 5.X.X\n- ColdBox 6.X.X\n- ColdBox 7.X.X\n\n## Currently supported features\n\nThis bundle includes functionality not only for ColdBox MVC, but also for WireBox, CacheBox and LogBox.\n\n### Code Insight\n\nCode completion for all major ColdBox + TestBox functions and scopes:\n\n- `binder ➝` : \"coldbox.system.ioc.config.Binder\",\n- `cachebox ➝` : \"coldbox.system.cache.CacheFactory\"\n- `controller ➝` : \"coldbox.system.web.Controller\",\n- `event ➝` : \"coldbox.system.web.context.RequestContext\",\n- `flash ➝` : \"coldbox.system.web.flash.AbstractFlashScope\",\n- `html ➝` : \"coldbox.system.core.dynamic.HTMLHelper\"\n- `log ➝` : \"coldbox.system.logging.Logger\",\n- `logbox ➝` : \"coldbox.system.logging.LogBox\",\n- `wirebox ➝` : \"coldbox.system.ioc.Injector\",\n\n### Code Skeleton Snippets\n\n- `cachebox-config ➝` : Creates a new CacheBox.cfc configuration file\n- `config ➝` : Creates a new ColdBox.cfc configuration file\n- `box ➝` : Creates a `box.json` template\n- `handler ➝` : Creates a ColdBox Event Handler\n- `interceptor ➝` : Creates a ColdBox Interceptor\n- `model ➝` : Creates a model object\n- `routes ➝` : Creates a new routing file\n- `point ➝` : Creates a new interception point method\n- `cfc ➝` : Creates a new ColdFusion script CFC\n- `function ➝` : Creates a new ColdFusion script function\n- `inject ➝` : Creates a new property with an `inject` annotation for WireBox\n- `property ➝` : Creates a new ColdFusion script property\n\n### Handler Code Snippets\n\n- `action ➝` : Creates a handler action\n- `around` : Creates an *aroundHandler()* implicit action\n- `onerror ➝` : Creates an *onError()* implicit action\n- `onhttp ➝` : Creates an *onInvalidHTTPMethod()* implict action\n- `onma ➝` : Creates an *onMissingAction()* implicit action\n- `postaction ➝` : Creates a *postXXX()* implicit action\n- `post ➝` : Creates a *postHandler()* implicit action\n- `preaction ➝` : Creates a *preXXX()* implicit action\n- `pre ➝` : Creates a *preHandler()* implicit action\n\n### ORM Code Snippets\n\n- `active ➝` : Creates a ColdBox Active Entity\n- `entity ➝` : Creates an ORM Entity\n- `ormservice ➝` : Creates a Base ORM service\n- `virtualservice ➝` : Creates a virtual entity service\n- `o2m` : Creates a one-to-many property definition\n- `m2o` : Creates a many-to-one property definition\n- `m2m` : Creates a many-to-many property definition\n\n### WireBox Code Snippets\n\n- `aspect ➝` : Creates a WireBox AOP Aspect object\n- `binder ➝` : Creates a basic WireBox configuration binder\n- `inject ➝` : WireBox property injection\n- `provider ➝` : Creates a WireBox provider method\n- `setter ➝` : Creates a WireBox setter injection\n\n## Installation instructions\n\n### With Package Control\n\nInstall the latest *vscode-coldbox* package from https://marketplace.visualstudio.com/.\n\n## References\n\n- A ColdBox Platform Bundle v2.0.0 for Sublime Text 2/3 - https://github.com/coldbox/coldbox-sublime\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcoldbox%2Fvscode-coldbox","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcoldbox%2Fvscode-coldbox","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcoldbox%2Fvscode-coldbox/lists"}