Quick Start
A walkthough of how to create a new account, build some "stored procedures" for your app and then consume the generated API
Tutorial Video
How to build a real-time chat in about 10 min using only client side code
Sample Site
A real time chat app that persists data to an Amazon SimpleDB. The same one that is in the tutorial video.
Demos
Code examples of ServerCyde features, with interactive demos. It will popup an alert whenever anyone else opens the while you are on it, including when you open it, thats part of the commet "subsciption" demo.
We are working on building out more documentation, it's a balance between coding new features and working more docs.
Sample Code + Demo
Request:
ServerCyde.SimpleDB.Select.GetUsers({
"lastname":
"%son" },
GetUsersResultHandler, CustomErrorHandler);
Response:
{ "val" : { "Errors"
: [ ],
"Valid" :
true
},
"ProcName" :
"GetUsers",
"Result" : [ { "Attributes"
: [ {
"Name" :
"FirstName",
"Value"
: "Riaz"
},
{
"Name" : "LastName",
"Value"
: "Serverson"
}
],
"Name"
: "support@servercyde.com"
} ]
}
More demos