26 lines
665 B
Markdown
26 lines
665 B
Markdown
# loopback-datasource-juggler
|
|
|
|
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).
|
|
|
|
## Usage
|
|
|
|
Install Juggler:
|
|
|
|
```
|
|
npm install loopback-datasource-juggler
|
|
```
|
|
|
|
Then install a connector:
|
|
|
|
```
|
|
npm install loopback-connector-mongodb // in this case, the mongodb connector
|
|
```
|
|
|
|
## Documentation
|
|
|
|
See the [official documentation](http://docs.strongloop.com).
|
|
|
|
### Creating data sources programmatically
|
|
|
|
See [Advanced topics: data sources](http://docs.strongloop.com/display/LB/Advanced+topics%3A+data+sources).
|