JSPM

parse

1.9.0-rc2
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 154705
  • Score
    100M100P100Q176711F
  • License BSD-3-Clause

The Parse JavaScript SDK

Package Exports

  • parse
  • parse/lib/node/RESTController
  • parse/node
  • parse/react-native

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (parse) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

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.