rg-utils
v0.1.1
Published
Utils for web development in angular 5+ environment.
Maintainers
Readme
RG-UTILS
A module that contains basic funcionality and utils for Angular 5+ Apps.
Example
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { RgUtilsModule } from 'rg-utils';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule, RgUtilsModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }How to install
Simply run the npm install script
npm install --save rg-utils