Skip to content

Commit

Permalink
Add Bower info to README
Browse files Browse the repository at this point in the history
  • Loading branch information
erikolson186 committed Feb 19, 2017
1 parent 48ca494 commit fde8a80
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,19 @@ doc: { count: 1, age: 28 }
```
**ZangoDB** then can be accessed using the global variable `zango`.

Alternatively, to install **ZangoDB** for usage with [node](https://nodejs.org/):
To install **ZangoDB** for usage with [node](https://nodejs.org/):

```
$ npm install zangodb
```

In both cases, an implementation of IndexedDB is required. For environments without a native implementation of IndexedDB, [Fake IndexedDB](https://github.com/dumbmatter/fakeIndexedDB) can be used:
To install **ZangoDB** using [Bower](https://bower.io/):

```
$ bower install zangodb
```

In each case, an implementation of IndexedDB is required. For environments without a native implementation of IndexedDB, [Fake IndexedDB](https://github.com/dumbmatter/fakeIndexedDB) can be used:

```javascript
global.indexedDB = require('fake-indexeddb');
Expand Down

0 comments on commit fde8a80

Please sign in to comment.