https://github.com/michaelbazos/ui-toolkit
A library of components for your angular application
https://github.com/michaelbazos/ui-toolkit
angular2 library typescript ui-components
Last synced: 3 months ago
JSON representation
A library of components for your angular application
- Host: GitHub
- URL: https://github.com/michaelbazos/ui-toolkit
- Owner: michaelbazos
- License: mit
- Created: 2017-03-01T17:43:50.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-06-08T08:33:16.000Z (about 9 years ago)
- Last Synced: 2025-03-29T07:11:26.602Z (over 1 year ago)
- Topics: angular2, library, typescript, ui-components
- Language: JavaScript
- Homepage:
- Size: 13.7 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ui-toolkit
A library of UI components for your Angular 2 applications. Compliant with the [Angular Package Format v4.0](https://goo.gl/AMOU5G).
## Features
- Generation to various module formats: FESM15, FESM5, UMD
- Type definitions
- Metadata for AOT compilation
## Getting started
1. Install the library
```
npm install ui-toolkit --save // --save is implicit as of npm 5.0
```
2. Import it in your application
```ts
// Import the desired module from ui-toolkit library
import { SampleModule } from 'ui-toolkit';
@NgModule({
declarations: [
AppComponent
],
imports: [
... ,
SampleModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
```
3. Use it
```html
```
## License
MIT © [Michael Bazos](mailto:micabazos@gmail.com)