Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jullierme/ngfly
An awesome suite of components Angular 4
https://github.com/jullierme/ngfly
angular angular-components angular-directives angular-library angular2 angular4 bootstrap3 npm npm-module rest typescript
Last synced: about 2 months ago
JSON representation
An awesome suite of components Angular 4
- Host: GitHub
- URL: https://github.com/jullierme/ngfly
- Owner: jullierme
- Archived: true
- Created: 2017-05-07T13:55:05.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-12-24T00:40:26.000Z (almost 7 years ago)
- Last Synced: 2024-09-26T00:06:02.130Z (about 2 months ago)
- Topics: angular, angular-components, angular-directives, angular-library, angular2, angular4, bootstrap3, npm, npm-module, rest, typescript
- Language: TypeScript
- Homepage: https://github.com/jullierme/ngfly
- Size: 32.2 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 61
-
Metadata Files:
- Readme: README.MD
Awesome Lists containing this project
README
# ngfly
## Installation
To install this library, run:
```bash
$ npm install ngfly --save
```## Consuming your library
Once you have published your library to npm, you can import your library in any Angular application by running:
```bash
$ npm install ngfly
```and then from your Angular `AppModule`:
```typescript
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';import { AppComponent } from './app.component';
import { NgFlyModule } from 'ngfly';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,NgFlyModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
```## License
MIT © [Jullierme Barros](mailto:[email protected])
# ngfly