Native Angular2 directives for Bootstrap, works with Bootstrap 3 and 4-alfa
Follow me at twitter to be notified about new releases.
http://valor-software.github.io/ng2-bootstrap/
If you need more modules check here
With webpack: https://github.com/AngularClass/angular2-webpack-starter
With gulp: pkozlowski-opensource/ng2-play
With angular2-seed: mgechev/angular2-seed
npm i ng2-bootstrap --save
import {Alert} from 'ng2-bootstrap/ng2-bootstrap';
@Component({
selector: 'app'
})
@View({
template: `
<alert type="info">ng2-bootstrap hello world!</alert>
This is a webpack sample:
`,
directives: [
Alert
]
})
export class Home {
}
Check demo for API documentation
Please read central ng2
modules readme for details, plans and approach and welcome :)