forked from apache/usergrid-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·67 lines (62 loc) · 2.66 KB
/
index.html
File metadata and controls
executable file
·67 lines (62 loc) · 2.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" href="examples/resources/css/bootstrap-combined.min.css" />
<link rel="stylesheet" href="examples/resources/css/styles.css" />
</head>
<body>
<div class="header">
<img src="examples/resources/images/apigee.png"> Usergrid Javascript SDK
</div>
<div id="main" class="main">
<br/>
<h2>Javascript SDK</h2>
This SDK is designed to enable you to connect your apps to the Usergrid API.
<br/>
<br/>
<h2>Read me</h2>
View the read me file for the SDK:
<a href="https://github.com/usergrid/usergrid/blob/master/sdks/html5-javascript/README.md">https://github.com/apache/usergrid-javascript/README.md</a>.
<br/>
<br/>
<h2>API documentation</h2>
For more information on Usergrid, see the Apache docs:
<a href="http://usergrid.apache.org/">http://usergrid.apache.org/</a>
<br/>
<br/>
<h2>Tests:</h2>
<br/>
<a href="tests/mocha/index.html" style="font-size: 20px;">Mocha Tests</a>
<br/>
This is a test script that runs all of the Mocha test cases written for the Javascript SDK.
<br/>
<br/>
<h2>Examples:</h2>
<br/>
<a href="examples/all-calls/all-calls.html" style="font-size: 20px;">User Example</a>
<br/>
This example shows the basic methods for making all REST calls against the API for creating, editing and logging in a new UsergridUser.
<br/>
<br/>
<a href="examples/dogs/dogs.html" style="font-size: 20px;">Dogs Example</a>
<br/>
This example shows you how to POST UsergridEntity objects and page through responses.
</div>
</body>
</html>