ngx-datacontext - Data context service for Angular applications to easily create data services and link them to entities.
View all the directives in action at https://alfredoperez.github.io/ngx-datacontext
- Angular (requires Angular 2 or higher, tested with 2.0.0)
Install above dependencies via npm.
Now install ngx-datacontext
via:
npm install --save ngx-datacontext
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-datacontext
:
map: {
'ngx-datacontext': 'node_modules/ngx-datacontext/bundles/ngx-datacontext.umd.js',
}
Once installed you need to import the main module:
import { NgxDatacontextModule } from 'ngx-datacontext';
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 NgxDatacontextModule .forRoot()
):
import { NgxDatacontextModule } from 'ngx-datacontext';
@NgModule({
declarations: [ AppComponent, ... ],
imports: [NgxDatacontextModule.forRoot(), ...],
bootstrap: [AppComponent]
})
export class AppModule {
}
Other modules in your application can simply import NgxDatacontextModule
:
import { NgxDatacontextModule } from 'ngx-datacontext';
@NgModule({
declarations: [OtherComponent, ...],
imports: [NgxDatacontextModule, ...],
})
export class OtherModule {
}
Copyright (c) 2017 Alfredo Perez. Licensed under the MIT License (MIT)