Doc edits
This commit is contained in:
parent
67596bd137
commit
d1b228b5cc
|
@ -6,6 +6,7 @@
|
|||
"docs/gettingstarted.md",
|
||||
"docs/resources.md",
|
||||
"docs/concepts.md",
|
||||
{"title": "API", "depth": 2},
|
||||
"docs/api.md",
|
||||
"docs/rest.md"
|
||||
]
|
||||
|
|
1072
docs/api.md
1072
docs/api.md
File diff suppressed because it is too large
Load Diff
|
@ -1,5 +1,9 @@
|
|||
##Concepts
|
||||
|
||||
###SDKs
|
||||
|
||||
**PLACEHOLDER FOR SDK INTRO**
|
||||
|
||||
###Model
|
||||
|
||||
LoopBack is centered around models. A model is an object that encapsulates data. A model is usually named after its real life counterpart. Like its real life counterpart a model has properties or attributes.
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
##LoopBack
|
||||
v1.0.0
|
||||
**v1.0.0**
|
||||
|
||||
###Introduction
|
||||
|
||||
LoopBack is a mobile backend framework that puts you in control. As a mobile developer you decide where to run your mobile backend - in the cloud or on permise.
|
||||
LoopBack is built on open source Node.js and leverages the power of Node and the community that stands behind Node.
|
||||
|
||||
LoopBack is here to help you develop mobile applications with rich functionality and data that is in your datacenter and the cloud.
|
||||
Since LoopBack is built on open source, it is highly extensible and familiar with developers already using Node.
|
||||
Node.js leverages Javascript. The ubiquituous language of the web that most developers have already had familiarity with it's ease of use.
|
||||
> **Introduction**
|
||||
>
|
||||
> LoopBack is a mobile backend framework that puts you in control. As a mobile developer you decide where to run your mobile backend - in the cloud or on permise.
|
||||
> LoopBack is built on open source Node.js and leverages the power of Node and the community that stands behind Node.
|
||||
>
|
||||
> LoopBack is here to help you develop mobile applications with rich functionality and data that is in your datacenter and the cloud.
|
||||
> Since LoopBack is built on open source, it is highly extensible and familiar with developers already using Node.
|
||||
> Node.js leverages Javascript. The ubiquituous language of the web that most developers have already had familiarity with it's ease of use.
|
||||
|
||||
---
|
||||
|
|
|
@ -21,3 +21,5 @@ $ slc run app
|
|||
**Step 5** Try out the various REST apis by clicking the button below.
|
||||
|
||||
<a href="http://localhost:3000/explorer" class="status btn btn-primary">Explore the REST APIs</a>
|
||||
|
||||
---
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
#Model REST API
|
||||
## REST API
|
||||
|
||||
LoopBack automatically binds a model to a list of HTTP endpoints that provide REST APIs for CRUD and other remote
|
||||
operations.
|
||||
|
||||
##Sample Model
|
||||
### Sample Model
|
||||
|
||||
We use the following `Location` model as an example to illustrate generated REST APIs.
|
||||
|
||||
|
@ -83,7 +83,7 @@ The remoting is defined using the following properties:
|
|||
- returns: Description of the return value
|
||||
- http: Binding to the HTTP endpoint
|
||||
|
||||
##Generated APIs
|
||||
###Generated APIs
|
||||
|
||||
|
||||
###create
|
||||
|
|
Loading…
Reference in New Issue