Skip to content

Instantly share code, notes, and snippets.

@mattlanham
mattlanham / parse.js
Created August 29, 2011 17:42 — forked from kwhinnery/parse.js
A Parse client for Titanium Mobile - sneak peek
//Public client interface
function Client(applicationId, masterKey) {
this.applicationId = applicationId;
this.masterKey = masterKey;
}
exports.Client = Client;
//Parse API endpoint
var ENDPOINT = 'https://api.parse.com/1/classes/';