{"id":19595457,"url":"https://github.com/meta-magic/amexio-vsc-extension","last_synced_at":"2025-08-12T22:38:27.722Z","repository":{"id":100692008,"uuid":"95753700","full_name":"meta-magic/Amexio-VSC-Extension","owner":"meta-magic","description":"Amexio Visual Studio Code Extensions. This Amexio Plugin will help the Angular developers using Visual Studio Code with a quick code snippet for the Angular and Amexio Directives as well as Angular TypeScript. Plugin support is available for Angular 4+ onwards.","archived":false,"fork":false,"pushed_at":"2019-05-24T14:18:37.000Z","size":1731,"stargazers_count":5,"open_issues_count":0,"forks_count":1,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-04-27T15:49:19.568Z","etag":null,"topics":["amexio","angular","angular4","bootstrap3","bootstrap4"],"latest_commit_sha":null,"homepage":"http://www.amexio.tech","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/meta-magic.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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":"2017-06-29T08:03:48.000Z","updated_at":"2019-05-24T14:18:39.000Z","dependencies_parsed_at":"2023-08-01T19:01:38.938Z","dependency_job_id":null,"html_url":"https://github.com/meta-magic/Amexio-VSC-Extension","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/meta-magic/Amexio-VSC-Extension","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meta-magic%2FAmexio-VSC-Extension","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meta-magic%2FAmexio-VSC-Extension/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meta-magic%2FAmexio-VSC-Extension/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meta-magic%2FAmexio-VSC-Extension/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/meta-magic","download_url":"https://codeload.github.com/meta-magic/Amexio-VSC-Extension/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meta-magic%2FAmexio-VSC-Extension/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270148198,"owners_count":24535695,"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-12T02:00:09.011Z","response_time":80,"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":["amexio","angular","angular4","bootstrap3","bootstrap4"],"created_at":"2024-11-11T08:47:04.907Z","updated_at":"2025-08-12T22:38:27.699Z","avatar_url":"https://github.com/meta-magic.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Amexio Angular Extensions for Visual Studio Code \n\nThis Amexio Plugin will help the Angular developers using Visual Studio Code with a quick code snippet for the Angular and Amexio Directives as well as Angular TypeScript. Plugin support is available for Angular 6+ onwards. \n\n## Usage\n\n### Demo\n\u003cimg src=\"https://raw.githubusercontent.com/meta-magic/Amexio-VSC-Extension/master/images/Amexio-VSC-Example2.gif\" /\u003e\n\n### Select the Amexio Ui Component\n\u003cimg src=\"https://raw.githubusercontent.com/meta-magic/Amexio-VSC-Extension/master/images/Amexio-VSC-Ex-1.jpg\" /\u003e\n\n### Fill up the required Component Params\n\u003cimg src=\"https://raw.githubusercontent.com/meta-magic/Amexio-VSC-Extension/master/images/Amexio-VSC-Ex-2.jpg\" /\u003e\n\n## Requirements\n\nInstall Amexio to enhance your Angular Project. \n\n## Amexio Angular Extension - Installation\nFor installing on previous Amexio version ref https://api.amexio.org/api/v5.4/index.html#/getting-started\nTo install this Amexio 4.x follow the steps given below:\n\n```bash\n$ cd your-angular-project\n$ npm install amexio-ng-extensions --save\n```\n\nand then from your Angular `AppModule`:\n\n```typescript\nimport {BrowserModule} from '@angular/platform-browser';\nimport {NgModule} from '@angular/core';\nimport {FormsModule} from '@angular/forms';\nimport {AppComponent} from './app.component';\nimport {AmexioWidgetModule} from 'amexio-ng-extensions'; // Import Amexio library\n\n//Dashboard,Charts \u0026 Maps are available as seperate module (not in AmexioWidgetModule)\nimport {AmexioChartsModule,AmexioDashBoardModule,AmexioEnterpriseModule,AmexioMapModule} from 'amexio-ng-extensions';\n\n@NgModule({\n  declarations: [AppComponent],\n  imports: [BrowserModule, AmexioWidgetModule, FormsModule, AmexioChartsModule, AmexioDashBoardModule,AmexioEnterpriseModule,AmexioMapModule],\n  bootstrap: [AppComponent]\n})\nexport class AppModule {\n}\n```\n\nOnce your library is imported, you can use its components, directives and pipes in your Angular application:\n\n```xml\n\u003c!-- You can now use your library component in app.component.html --\u003e\n\u003camexio-text-input\u003e\u003c/amexio-text-input\u003e\n```\n\n\n## Installing Extension in Visual Studio Code\n\n\u003cimg src=\"https://raw.githubusercontent.com/meta-magic/Amexio-VSC-Extension/master/images/Amexio-VSC-Installation.gif\" /\u003e\n\n[Microsoft Visual Studio Market Place](https://marketplace.visualstudio.com/items?itemName=MetaMagic.amexio)\n```bash\next install amexio\n```\n\n\n## Known Issues\n\n--\n\n## Release Notes\n\nAmexio VSC Extension supports Amexio Moscow Release v5.12\n\n## License\n\n[Apache 2.0](https://api.amexio.org/api/license.html) © [MetaMagic Global Inc](http://www.metamagicglobal.com/), 2017. [Amexio Angular Extensions](http://www.amexio.tech)\n\n**Enjoy!**\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmeta-magic%2Famexio-vsc-extension","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmeta-magic%2Famexio-vsc-extension","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmeta-magic%2Famexio-vsc-extension/lists"}