Skip to content

neocomplexx/ng-neo-pipes

Repository files navigation

ng-neo-pipes

Collectios of pipes for Angular

Installation

To install this library, run:

$ npm install ng-neo-pipes --save

and then from your Angular AppModule:

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';

import { AppComponent } from './app.component';

// Import library
import { NeoPipesModule } from 'ng-neo-pipes';

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,

    // Specify library as an import
    NeoPipesModule.forRoot()
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }

// Import library in child modules to use pipes
import { NeoPipesModule } from 'ng-neo-pipes';

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,

    // Specify library as an import
    NeoPipesModule
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class ChildModule { }

License

MIT © Neocomplexx

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published