@vflaragao/ngx-nfse
TypeScript icon, indicating that this package has built-in type declarations

0.0.1 • Public • Published

ngx-nfse - Angular 5 component to show NFS-e

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

Demo

View all the directives in action at https://vflaragao.github.io/ngx-nfse

Dependencies

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

Installation

Install above dependencies via npm.

Now install ngx-nfse via:

npm install --save ngx-nfse

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-nfse:

map: {
  'ngx-nfse': 'node_modules/ngx-nfse/bundles/ngx-nfse.umd.js',
}

Once installed you need to import the main module:

import { LibModule } from 'ngx-nfse';

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-nfse';

@NgModule({
  declarations: [AppComponent, ...],
  imports: [LibModule.forRoot(), ...],  
  bootstrap: [AppComponent]
})
export class AppModule {
}

Other modules in your application can simply import LibModule:

import { LibModule } from 'ngx-nfse';

@NgModule({
  declarations: [OtherComponent, ...],
  imports: [LibModule, ...], 
})
export class OtherModule {
}

Usage

License

Copyright (c) 2018 vflaragao. Licensed under the MIT License (MIT)

Readme

Keywords

Package Sidebar

Install

npm i @vflaragao/ngx-nfse

Weekly Downloads

4

Version

0.0.1

License

MIT

Unpacked Size

279 kB

Total Files

32

Last publish

Collaborators

  • vflaragao