{"id":23800193,"url":"https://github.com/pittan/ngx-webview-bridge","last_synced_at":"2026-05-18T05:35:18.026Z","repository":{"id":57151919,"uuid":"107018730","full_name":"Pittan/ngx-webview-bridge","owner":"Pittan","description":"Angular-wrapped WebViewJavascriptBridge","archived":false,"fork":false,"pushed_at":"2017-10-25T14:26:51.000Z","size":96,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-01-01T21:35:44.328Z","etag":null,"topics":["angular","webview"],"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/Pittan.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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":"2017-10-15T14:19:16.000Z","updated_at":"2017-10-15T14:28:31.000Z","dependencies_parsed_at":"2022-09-03T18:01:36.531Z","dependency_job_id":null,"html_url":"https://github.com/Pittan/ngx-webview-bridge","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Pittan%2Fngx-webview-bridge","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Pittan%2Fngx-webview-bridge/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Pittan%2Fngx-webview-bridge/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Pittan%2Fngx-webview-bridge/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Pittan","download_url":"https://codeload.github.com/Pittan/ngx-webview-bridge/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240042388,"owners_count":19738864,"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":["angular","webview"],"created_at":"2025-01-01T21:35:55.186Z","updated_at":"2026-04-24T21:30:18.408Z","avatar_url":"https://github.com/Pittan.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003cimg height=\"256px\" width=\"256px\" style=\"text-align: center;\" src=\"https://cdn.rawgit.com/Pittan/ngx-webview-bridge/master/demo/src/assets/logo.svg\"\u003e\n\u003c/p\u003e\n\n# ngx-webview-bridge - Angular-wrapped WebViewJavascriptBridge\n\n[![npm version](https://badge.fury.io/js/ngx-webview-bridge.svg)](https://badge.fury.io/js/ngx-webview-bridge)\n[![Build Status](https://travis-ci.org/Pittan/ngx-webview-bridge.svg?branch=master)](https://travis-ci.org/Pittan/ngx-webview-bridge)\n[![Coverage Status](https://coveralls.io/repos/github/Pittan/ngx-webview-bridge/badge.svg?branch=master)](https://coveralls.io/github/Pittan/ngx-webview-bridge?branch=master)\n[![dependency Status](https://david-dm.org/Pittan/ngx-webview-bridge/status.svg)](https://david-dm.org/Pittan/ngx-webview-bridge)\n[![devDependency Status](https://david-dm.org/Pittan/ngx-webview-bridge/dev-status.svg?branch=master)](https://david-dm.org/Pittan/ngx-webview-bridge#info=devDependencies)\n[![Greenkeeper Badge](https://badges.greenkeeper.io/Pittan/ngx-webview-bridge.svg)](https://greenkeeper.io/)\n\n## Demo\n\nView all the directives in action at https://Pittan.github.io/ngx-webview-bridge\n\n## Dependencies\n* [Angular](https://angular.io) (*requires* Angular 2 or higher, tested with 2.0.0)\n\n## Installation\nInstall above dependencies via *npm*. \n\nNow install `ngx-webview-bridge` via:\n```shell\nnpm install --save ngx-webview-bridge\n```\n\n---\n##### SystemJS\n\u003e**Note**:If you are using `SystemJS`, you should adjust your configuration to point to the UMD bundle.\nIn your systemjs config file, `map` needs to tell the System loader where to look for `ngx-webview-bridge`:\n```js\nmap: {\n  'ngx-webview-bridge': 'node_modules/ngx-webview-bridge/bundles/ngx-webview-bridge.umd.js',\n}\n```\n---\n\nOnce installed you need to import the main module:\n```js\nimport { LibModule } from 'ngx-webview-bridge';\n```\nThe only remaining part is to list the imported module in your application module. The exact method will be slightly\ndifferent for the root (top-level) module for which you should end up with the code similar to (notice ` LibModule .forRoot()`):\n```js\nimport { LibModule } from 'ngx-webview-bridge';\n\n@NgModule({\n  declarations: [AppComponent, ...],\n  imports: [LibModule.forRoot(), ...],  \n  bootstrap: [AppComponent]\n})\nexport class AppModule {\n}\n```\n\nOther modules in your application can simply import ` LibModule `:\n\n```js\nimport { LibModule } from 'ngx-webview-bridge';\n\n@NgModule({\n  declarations: [OtherComponent, ...],\n  imports: [LibModule, ...], \n})\nexport class OtherModule {\n}\n```\n\n## Usage\n\n\n\n## License\n\nCopyright (c) 2017 Amon Keishima. Licensed under the MIT License (MIT)\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpittan%2Fngx-webview-bridge","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpittan%2Fngx-webview-bridge","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpittan%2Fngx-webview-bridge/lists"}