loopback-datasource-juggler/README.md

32 lines
869 B
Markdown
Raw Normal View History

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-12-21 00:57:21 +00:00
## Supported versions
Current|Long Term Support
:-:|:-:
3.x|2.x
2017-10-31 02:52:38 +00:00
Learn more about our LTS plan in the [LoopBack documentation](http://loopback.io/doc/en/contrib/Long-term-support.html).
2016-12-21 00:57:21 +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
2017-01-20 23:51:30 +00:00
See the [LoopBack documentation](http://loopback.io/doc/en/lb3/index.html).
2013-08-13 00:38:04 +00:00
2017-01-20 23:51:30 +00:00
For information on data source connectors, see [Connecting models to data sources](https://loopback.io/doc/en/lb3/Connecting-models-to-data-sources.html).