Skip to content

moodletw/Parse-SDK-JS

 
 

Repository files navigation

Parse SDK for JavaScript

Build Status Test Coverage Npm Version License

A library that gives you access to the powerful Parse cloud platform from your JavaScript app. For more information on Parse and its features, see the website or the JavaScript guide.

Getting Started

The SDK is available for download on our website or on our CDN. However, the easiest way to integrate it into your JavaScript project is through the npm module.

Using Parse on Different Platforms

The JavaScript ecosystem is wide and incorporates a large number of platforms and execution environments. To handle this, the Parse npm module contains special versions of the SDK tailored to use in Node.js and React Native environments. Not all features make sense in all environments, so using the appropriate package will ensure that items like local storage, user sessions, and HTTP requests use appropriate dependencies.

To use the npm modules for a browser based application, include it as you normally would:

var Parse = require('parse');

For server-side applications or Node.js command line tools, include 'parse/node':

// In a node.js environment
var Parse = require('parse/node');

For React Native applications, include 'parse/react-native':

// In a React Native application
var Parse = require('parse/react-native');

License

Copyright (c) 2015-present, Parse, LLC.
All rights reserved.

This source code is licensed under the BSD-style license found in the
LICENSE file in the root directory of this source tree. An additional grant 
of patent rights can be found in the PATENTS file in the same directory.

Packages

No packages published

Languages

  • JavaScript 99.9%
  • Shell 0.1%