Skip to content

Commit

Permalink
add installation instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
IdanCo committed Jul 14, 2017
1 parent 3469a5a commit 03cf8d0
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,30 @@ See it in action - https://idanco.github.io/ng1bs4/
* Finally upgraded to Angular? Use [NG Bootstrap](https://ng-bootstrap.github.io/#/home)
* None of the above? You belong with us!

## Intsall

install ng1bs4:

```sh
npm install ng1bs4 --save
```
import ng1bs4 module and styling into your project:
```js
import ng1bs4 from 'ng1bs4';
import 'ng1bs4/library/library.css'
```
inject ng1bs4 module into your app:
```js
angular
.module('myApp', [
...,
ng1bs4
]);
```
test by adding this directive anywhere in your markup
```html
<ngbs-test></ngbs-test>
```
## Philosophy
**No Styling**

Expand Down

0 comments on commit 03cf8d0

Please sign in to comment.