medgraph
Installation
To install this library, run:
$ npm install medgraph --save
Consuming your library
Once you have published your library to npm, you can import your library in any Angular application by running:
$ npm install medgraph
and then from your Angular AppModule
:
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { MedGraphModule } from 'medgraph';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
MedGraphModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
Development
To generate all *.js
, *.d.ts
and *.metadata.json
files:
$ npm run build
To lint all *.ts
files:
$ npm run lint
License
CDDL-1.0 © Alessandro Mitelli