Add placeholders for client apis
This commit is contained in:
parent
b1d554709d
commit
f0d0a778ca
|
@ -6,9 +6,11 @@
|
|||
"docs/gettingstarted.md",
|
||||
"docs/resources.md",
|
||||
"docs/concepts.md",
|
||||
{"title": "API", "depth": 2},
|
||||
"docs/cli.md",
|
||||
"docs/api.md",
|
||||
"docs/rest.md",
|
||||
"docs/cli.md"
|
||||
"docs/ios.md",
|
||||
"docs/js.md",
|
||||
"docs/java.md",
|
||||
"docs/rest.md"
|
||||
]
|
||||
}
|
||||
|
|
26
docs/api.md
26
docs/api.md
|
@ -889,18 +889,26 @@ var memory = loopback.createDataSource({
|
|||
});
|
||||
```
|
||||
|
||||
**Available Connectors**
|
||||
**Database Connectors**
|
||||
|
||||
- [In Memory](#memory-connector)
|
||||
- [REST](http://github.com/strongloop/loopback-connector-rest)
|
||||
- [Oracle](http://github.com/strongloop/loopback-connector-oracle)
|
||||
- [MongoDB](http://github.com/strongloop/loopback-connector-mongodb)
|
||||
- TODO - [MySQL](http://github.com/strongloop/loopback-connector-mysql)
|
||||
- TODO - [SQLite3](http://github.com/strongloop/loopback-connector-sqlite)
|
||||
- TODO - [Postgres](http://github.com/strongloop/loopback-connector-postgres)
|
||||
- TODO - [Redis](http://github.com/strongloop/loopback-connector-redis)
|
||||
- TODO - [CouchDB](http://github.com/strongloop/loopback-connector-couch)
|
||||
- TODO - [Firebird](http://github.com/strongloop/loopback-connector-firebird)
|
||||
- [MySQL](http://github.com/strongloop/loopback-connector-mysql) - In Development
|
||||
- [SQLite3](http://github.com/strongloop/loopback-connector-sqlite) - In Development
|
||||
- [Postgres](http://github.com/strongloop/loopback-connector-postgres) - In Development
|
||||
- [Redis](http://github.com/strongloop/loopback-connector-redis) - In Development
|
||||
- [CouchDB](http://github.com/strongloop/loopback-connector-couch) - In Development
|
||||
- [Firebird](http://github.com/strongloop/loopback-connector-firebird) - In Development
|
||||
|
||||
**Other Connectors**
|
||||
|
||||
- [REST](http://github.com/strongloop/loopback-connector-rest)
|
||||
- [Email](#email-model)
|
||||
- [JSON RPC](http://github.com/strongloop/loopback-connector-jsonrpc) - In Development
|
||||
- [SOAP](http://github.com/strongloop/loopback-connector-soap) - In Development
|
||||
- [Push Notifications](https://github.com/strongloop/loopback-push-notification) - In Development
|
||||
- [File Storage](https://github.com/strongloop/loopback-storage-service) - In Development
|
||||
|
||||
**Installing Connectors**
|
||||
|
||||
|
@ -949,8 +957,6 @@ function count() {
|
|||
}
|
||||
```
|
||||
|
||||
###### Operations
|
||||
|
||||
**CRUD / Query**
|
||||
|
||||
The memory connector supports all the standard [query and crud operations](#crud-and-query-mixins) to allow you to test your models against an in memory data source.
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
## iOS API
|
||||
|
||||
<h3><em>Stay tuned. Currently in development.</em></h3>
|
|
@ -0,0 +1,3 @@
|
|||
## Android API
|
||||
|
||||
<h3><em>Stay tuned. Currently in development.</em></h3>
|
|
@ -0,0 +1,3 @@
|
|||
## Browser API
|
||||
|
||||
<h3><em>Stay tuned. Currently in development.</em></h3>
|
Loading…
Reference in New Issue