{"id":19595342,"url":"https://github.com/meta-magic/amexio-atom-extension","last_synced_at":"2026-03-19T10:40:59.763Z","repository":{"id":100691379,"uuid":"97558779","full_name":"meta-magic/Amexio-Atom-Extension","owner":"meta-magic","description":"Amexio Atom Extension. This extension will help the developers of Atom Editor with quick code snippet for the Amexio Markup as well as Amexio TypeScript.","archived":false,"fork":false,"pushed_at":"2018-02-16T05:46:42.000Z","size":555,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":6,"default_branch":"master","last_synced_at":"2025-01-09T07:13:53.287Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://www.amexio.tech","language":null,"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":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":"2017-07-18T06:03:35.000Z","updated_at":"2019-01-01T08:23:17.000Z","dependencies_parsed_at":"2023-08-01T20:32:55.653Z","dependency_job_id":null,"html_url":"https://github.com/meta-magic/Amexio-Atom-Extension","commit_stats":null,"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meta-magic%2FAmexio-Atom-Extension","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meta-magic%2FAmexio-Atom-Extension/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meta-magic%2FAmexio-Atom-Extension/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meta-magic%2FAmexio-Atom-Extension/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/meta-magic","download_url":"https://codeload.github.com/meta-magic/Amexio-Atom-Extension/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240868384,"owners_count":19870594,"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-11-11T08:46:34.492Z","updated_at":"2026-03-02T18:34:10.923Z","avatar_url":"https://github.com/meta-magic.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Amexio Angular Extensions for Atom\n\nThis extension will help the developers of Atom with quick code snippet for the Amexio Angular Markup as well as Angular TypeScript.\n\n## Usage\n\n### Demo\n\n### Select the Amexio Ui Component\n\u003cimg src=\"https://github.com/meta-magic/Amexio-Atom-Extension/blob/master/searchComponent.png\"/\u003e\n### Fill up the required Component Params\n\u003cimg src =\"https://github.com/meta-magic/Amexio-Atom-Extension/blob/master/fillDetails.png\"/\u003e\n## Requirements\n\nInstall Amexio to enhance your Angular Project.\n\n## Amexio Angular Extension - Installation\n\nTo install this library, 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,FormsModule } from '@angular/core';\n\nimport { AppComponent } from './app.component';\n\n// Import your library\nimport { AmexioWidgetModule,CommonHttpService } from 'amexio-ng-extensions';\n\n@NgModule({\n  declarations: [\n    AppComponent\n  ],\n  imports: [\n    BrowserModule,\n    AmexioWidgetModule,\n    FormsModule\n  ],\n  providers: [CommonHttpService],\n  bootstrap: [AppComponent]\n})\nexport class AppModule { }\n```\nInclude this in your app's angular-cli.json file\n\n``` json \n\"styles\": [\n        \"../node_modules/bootstrap/dist/css/bootstrap.min.css\",\n        \"../src/assets/messenger-theme-air.css\",\n        \"../src/assets/messenger.css\",\n        \"../node_modules/bootstrap-datepicker/dist/css/bootstrap-datepicker.min.css\",\n        \"../node_modules/bootstrap-timepicker/css/bootstrap-timepicker.min.css\",\n        \"../node_modules/jquery-bootstrap-scrolling-tabs/jquery.scrolling-tabs.min.css\",\n        \"styles.css\"\n      ],\n      \"scripts\": [\"../node_modules/jquery/dist/jquery.min.js\",\n        \"../node_modules/jquery-bootstrap-scrolling-tabs/jquery.scrolling-tabs.min.js\",\n        \"../src/assets/messenger.js\",\n        \"../node_modules/bootstrap-datepicker/dist/js/bootstrap-datepicker.min.js\",\n        \"../node_modules/bootstrap-datepicker/dist/locales/bootstrap-datepicker.en-GB.min.js\",\n        \"../node_modules/bootstrap-timepicker/js/bootstrap-timepicker.min.js\"],\n\n```\nIf not using cli then simply add it to the index.html head.\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 Atom\n\nIn the install package section look for \"MetaMagic-Amexio\" (https://atom.io/packages/MetaMagic-Amexio) package\n\n\u003cimg src =\"https://github.com/meta-magic/Amexio-Atom-Extension/blob/master/installPackage.png\"/\u003e\n\n## Known Issues\n\n--\n\n## Release Notes\n\n### 1.X.X\n\nAmexio Atom Extension supports Amexio Varanasi\n    http://www.amexio.org/showcaseapp/v1/index.html#/home\nAmexio Atom Extension supports Amexio Hampi\n    http://www.amexio.org/showcaseapp/v2/index.html#/home\n\n## License\n\n[Apache 2.0](http://www.amexio.org/metamagic-showcase/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-atom-extension","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmeta-magic%2Famexio-atom-extension","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmeta-magic%2Famexio-atom-extension/lists"}