ngx-webview-bridge
v0.1.0
Published
Angular-wrapped WebViewJavascriptBridge
Downloads
25
Readme
ngx-webview-bridge - Angular-wrapped WebViewJavascriptBridge
Demo
View all the directives in action at https://Pittan.github.io/ngx-webview-bridge
Dependencies
- Angular (requires Angular 2 or higher, tested with 2.0.0)
Installation
Install above dependencies via npm.
Now install ngx-webview-bridge
via:
npm install --save ngx-webview-bridge
SystemJS
Note:If you are using
SystemJS
, you should adjust your configuration to point to the UMD bundle. In your systemjs config file,map
needs to tell the System loader where to look forngx-webview-bridge
:
map: {
'ngx-webview-bridge': 'node_modules/ngx-webview-bridge/bundles/ngx-webview-bridge.umd.js',
}
Once installed you need to import the main module:
import { LibModule } from 'ngx-webview-bridge';
The only remaining part is to list the imported module in your application module. The exact method will be slightly
different for the root (top-level) module for which you should end up with the code similar to (notice LibModule .forRoot()
):
import { LibModule } from 'ngx-webview-bridge';
@NgModule({
declarations: [AppComponent, ...],
imports: [LibModule.forRoot(), ...],
bootstrap: [AppComponent]
})
export class AppModule {
}
Other modules in your application can simply import LibModule
:
import { LibModule } from 'ngx-webview-bridge';
@NgModule({
declarations: [OtherComponent, ...],
imports: [LibModule, ...],
})
export class OtherModule {
}
Usage
License
Copyright (c) 2017 Amon Keishima. Licensed under the MIT License (MIT)