0.0.7 • Published 5 years ago

@ngx-datacontext/core v0.0.7

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

ngx-datacontext - Data context service for Angular applications to easily create data services and link them to entities.

npm version, Build Status Coverage Status dependency Status devDependency Status Greenkeeper Badge

Demo

View all the directives in action at https://alfredoperez.github.io/ngx-datacontext

Dependencies

  • Angular (requires Angular 2 or higher, tested with 2.0.0)

Installation

Install above dependencies via npm.

Now install ngx-datacontext via:

npm install --save ngx-datacontext

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 for ngx-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 {
}

Usage

License

Copyright (c) 2017 Alfredo Perez. Licensed under the MIT License (MIT)

0.0.7

5 years ago

0.0.4

5 years ago

0.0.2

5 years ago

0.0.1

5 years ago