2016-01-22 21:50:58 +00:00
# loopback-datasource-juggler
2013-07-16 19:41:49 +00:00
2016-01-22 22:10:01 +00:00
An ORM/ODM that provides a common set of interfaces for interacting with databases, REST APIs, and other types of data sources. It was originally forked from [JugglingDB ](https://github.com/1602/jugglingdb ).
2013-08-13 00:38:04 +00:00
2016-01-22 21:50:58 +00:00
## Usage
2011-10-05 21:18:38 +00:00
2016-01-22 21:50:58 +00:00
Install Juggler:
2011-10-05 21:18:38 +00:00
2016-01-22 22:09:20 +00:00
```
npm install loopback-datasource-juggler
```
2011-10-05 21:18:38 +00:00
2016-01-22 21:50:58 +00:00
Then install a connector:
2012-12-15 13:03:06 +00:00
2016-01-22 22:09:20 +00:00
```
npm install loopback-connector-mongodb // in this case, the mongodb connector
```
2012-12-15 13:03:06 +00:00
2016-01-22 21:50:58 +00:00
## Documentation
2012-12-15 13:03:06 +00:00
2016-01-22 21:50:58 +00:00
See the [official documentation ](http://docs.strongloop.com ).
2013-08-13 00:38:04 +00:00
2016-01-22 21:50:58 +00:00
### Creating data sources programmatically
See [Advanced topics: data sources ](http://docs.strongloop.com/display/LB/Advanced+topics%3A+data+sources ).