ga-js-parse-client
v1.0.1
Published
A learning tool for CRUD operations for General Assembly - DC JS1
Downloads
6
Readme
Setup your environment
$ git clone https://github.com/recursivefunk/ga-js-parse-client
$ cd ga-js-parse-client
$ open config.html
# fill out values you get from Johnny
Quick Start
Open up index.html
// First define the type of object you want to work with.
// This can be named anything you like!
var MyType = new ParseObjectType("Car")
MyType.create({color:'red'}, function(err, result){
console.log(err, result)
})
// Now you can start creating instances of your object type! Everything in
// the API is asynchronous so remember your callback functions!
MyType.create({ foo: 'bar' }, function(err, result) {
// If an error occured, the err object will exist. Otherwise it will be null
// If the error object is null, everything went OK. Print the result
// parameter so see what you're working with!
});
The API
Creating an object
MyType.create(myobj, callbackFunction);
Getting an existing object
MyType.get(objectId, callbackFunction);
Get ALL objects that have been created
MyType.getAll(callbackFunction);
Updating an existing object
MyType.update(objectId, updatedProps, callbackFunction);
Delete an existing object
MyType.remove(objectId, callbackFunction);
Running the tests
Testing is Fundamental :)
$ open test/index.html