loopback-datasource-juggler/README.md

35 lines
795 B
Markdown
Raw Normal View History

2013-07-16 18:28:18 +00:00
# Loopback Data
2013-07-16 19:41:49 +00:00
Loopback Data is an ORM that provides a common set of interfaces for interacting with databases, REST apis, and other data sources.
2011-10-05 21:18:38 +00:00
## Installation
2013-07-16 18:28:18 +00:00
slnode install loopback-data
2011-10-05 21:18:38 +00:00
2013-07-16 18:28:18 +00:00
Also install the appropriated connector, for example for mongodb:
2012-12-15 13:03:06 +00:00
2013-07-16 18:28:18 +00:00
npm install loopback-connector-mongodb
2012-12-15 13:03:06 +00:00
2013-07-16 18:28:18 +00:00
check following list of available connectors
2012-12-15 13:03:06 +00:00
2013-07-16 18:28:18 +00:00
## Loopback Data Connectors
2012-12-15 13:03:06 +00:00
<table>
<thead>
<tr>
2013-07-16 18:28:18 +00:00
<th>Type</th>
2012-12-15 13:03:06 +00:00
<th>Package name</th>
</tr>
</thead>
<tbody>
2013-07-16 18:28:18 +00:00
2012-12-15 13:20:18 +00:00
<!-- MongoDB -->
2012-12-15 13:03:06 +00:00
<tr>
<td><a href="http://www.mongodb.org"><img src="http://mongodb.ru/favicon.ico" alt="MongoDB" /></a> MongoDB</td>
2013-07-16 18:28:18 +00:00
<td><a href="https://github.com/strongloop/loopback-connector-mongodb">loopback-connector-mongodb</a></td>
2012-12-15 13:20:18 +00:00
</tr>
2013-07-16 18:28:18 +00:00
2012-12-15 13:03:06 +00:00
</tbody>
</table>
2013-07-16 18:48:37 +00:00