0.1.10 • Published 8 years ago
ng-universal-storage v0.1.10
ng-universal-storage (in development)
Installation
To install this library, run:
$ npm install ng-universal-storage --saveConsuming your library
Once you have published your library to npm, you can import your library in any Angular application by running:
$ npm install ng-universal-storageand then from your Angular AppModule:
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { NgUniversalStorageModule } from 'ng-universal-storage';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
// Import NgUniversalStorageModule module
NgUniversalStorage
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }Development
To generate all *.js, *.d.ts and *.metadata.json files:
$ npm run buildTo lint all *.ts files:
$ npm run lintLicense
MIT © Eduard Deza Castellano