ga-js-parse-client

1.0.1 • Public • Published

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

Readme

Keywords

none

Package Sidebar

Install

npm i ga-js-parse-client

Weekly Downloads

1

Version

1.0.1

License

MIT

Last publish

Collaborators

  • recursivefunk
  • jshawl