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>
|
2013-07-23 05:12:32 +00:00
|
|
|
<td><a href="http://www.mongodb.org"><img src="http://media.mongodb.org/logo-mongodb.png" 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-23 05:12:32 +00:00
|
|
|
|
|
|
|
<!-- Oracle -->
|
|
|
|
<tr>
|
|
|
|
<td><a href="http://www.oracle.com"><img src="https://upload.wikimedia.org/wikipedia/commons/thumb/5/50/Oracle_logo.svg/663px-Oracle_logo.svg.png" alt="Oracle" /></a> Oracle</td>
|
|
|
|
<td><a href="https://github.com/strongloop/loopback-connector-oracle">loopback-connector-oracle</a></td>
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
<!-- MySQL -->
|
|
|
|
<tr>
|
|
|
|
<td><a href="http://www.mysql.com/"><img src="http://www.mysql.com/common/logos/logo-mysql-110x57.png" alt="MySQL" /></a> MySQL</td>
|
|
|
|
<td><a href="https://github.com/strongloop/loopback-connector-mysql">loopback-connector-mysql</a></td>
|
|
|
|
</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
|
|
|
|