Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

ga-js-parse-client

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ga-js-parse-client

A learning tool for CRUD operations for General Assembly - DC JS1

latest
npmnpm
Version
1.0.1
Version published
Maintainers
1
Created
Source

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

FAQs

Package last updated on 04 May 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts