2.24.0 • Published 7 years ago
yntoast v2.24.0
yntoast
Installation
To install this library, run:
$ npm install yntoast --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 yntoast
and then from your Angular AppModule
:
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
// Import your library
import { SampleModule } from 'yntoast';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
// Specify your library as an import
LibraryModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
Once your library is imported, you can use its components, directives and pipes in your Angular application:
<!-- You can now use your library component in app.component.html -->
<h1>
{{title}}
</h1>
<sampleComponent></sampleComponent>
Development
To generate all *.js
, *.d.ts
and *.metadata.json
files:
$ npm run build
To lint all *.ts
files:
$ npm run lint
License
MIT © Zefei Guo
2.24.0
7 years ago
2.23.0
7 years ago
2.21.0
7 years ago
2.20.0
7 years ago
2.19.0
7 years ago
2.18.0
7 years ago
2.17.0
7 years ago
2.16.0
7 years ago
2.15.0
7 years ago
2.14.0
7 years ago
2.13.0
7 years ago
2.12.0
7 years ago
2.11.0
7 years ago
2.10.0
7 years ago
2.9.0
7 years ago
2.8.0
7 years ago
2.7.0
7 years ago
2.6.0
7 years ago
2.5.0
7 years ago
2.4.0
7 years ago
2.3.0
7 years ago
2.2.0
7 years ago
2.1.0
7 years ago
2.0.0
7 years ago
0.1.0
7 years ago