All Projects → parse-community → Parse Sdk Js

parse-community / Parse Sdk Js

Licence: other
The JavaScript SDK for the Parse Platform

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Parse Sdk Js

Demoinfocs Golang
High performance CS:GO demo parser for Go (demoinfo)
Stars: ✭ 288 (-75.13%)
Mutual labels:  hacktoberfest, parse
Skrape.it
A Kotlin-based testing/scraping/parsing library providing the ability to analyze and extract data from HTML (server & client-side rendered). It places particular emphasis on ease of use and a high level of readability by providing an intuitive DSL. It aims to be a testing lib, but can also be used to scrape websites in a convenient fashion.
Stars: ✭ 231 (-80.05%)
Mutual labels:  hacktoberfest, parse
Parse Sdk Android
The Android SDK for the Parse Platform
Stars: ✭ 1,806 (+55.96%)
Mutual labels:  hacktoberfest, parse
Leasot
Parse and output TODOs and FIXMEs from comments in your files
Stars: ✭ 729 (-37.05%)
Mutual labels:  hacktoberfest, parse
Openwisp Network Topology
Network topology collector and visualizer. Collects network topology data from dynamic mesh routing protocols or other popular networking software like OpenVPN, allows to visualize the network graph, save daily snapshots that can be viewed in the future and more.
Stars: ✭ 67 (-94.21%)
Mutual labels:  hacktoberfest
Youtubeexplode.converter
Muxes and converts videos from YoutubeExplode
Stars: ✭ 68 (-94.13%)
Mutual labels:  hacktoberfest
H4ckt0b3rf3st 2020
Create Hacktoberfest Pull Requests
Stars: ✭ 68 (-94.13%)
Mutual labels:  hacktoberfest
Mathexecutor
Simple math expresions parser and calculator
Stars: ✭ 67 (-94.21%)
Mutual labels:  hacktoberfest
Wise Old Man
The Open Source Old School Runescape progress tracker.
Stars: ✭ 68 (-94.13%)
Mutual labels:  hacktoberfest
Solid
Liquid template engine in Elixir
Stars: ✭ 68 (-94.13%)
Mutual labels:  hacktoberfest
Brawlstats
(A)sync python wrapper for the Brawl Stars API
Stars: ✭ 68 (-94.13%)
Mutual labels:  hacktoberfest
Ideogram
Insert emoji anywhere in elementary OS, even in non-native apps
Stars: ✭ 68 (-94.13%)
Mutual labels:  hacktoberfest
Elmyr
A utility to make Kotlin/Java tests random yet reproducible
Stars: ✭ 68 (-94.13%)
Mutual labels:  hacktoberfest
Notify Py
💬 | A simple Python Module for sending cross-platform desktop notifications on Windows, macOS and Linux
Stars: ✭ 68 (-94.13%)
Mutual labels:  hacktoberfest
Image Gif
GIF en- and decoder
Stars: ✭ 68 (-94.13%)
Mutual labels:  hacktoberfest
Multipletab
Multiple Tab Handler, Provides feature to close multiple tabs.
Stars: ✭ 67 (-94.21%)
Mutual labels:  hacktoberfest
Talisman
By hooking into the pre-push hook provided by Git, Talisman validates the outgoing changeset for things that look suspicious - such as authorization tokens and private keys.
Stars: ✭ 1,155 (-0.26%)
Mutual labels:  hacktoberfest
Escpos Printer Db
Database of ESC/POS thermal receipt printers
Stars: ✭ 68 (-94.13%)
Mutual labels:  hacktoberfest
Adminlte
Pi-hole Dashboard for stats and more
Stars: ✭ 1,155 (-0.26%)
Mutual labels:  hacktoberfest
Alpakka
Alpakka is a Reactive Enterprise Integration library for Java and Scala, based on Reactive Streams and Akka.
Stars: ✭ 1,154 (-0.35%)
Mutual labels:  hacktoberfest

Parse Platform

Parse SDK for JavaScript

A library that gives you access to the powerful Parse Server backend from your JavaScript app.

Follow on Twitter Join the conversation License Build status Backers on Open Collective Sponsors on Open Collective

Test coverage npm version CDNJS version Greenkeeper badge


For more information on Parse and its features, see the website, the JavaScript guide, the Cloud Code guide or API Reference.

Getting Started

The easiest way to integrate the Parse SDK into your JavaScript project is through the npm module. However, if you want to use a pre-compiled file, you can fetch it from unpkg. The development version is available at https://unpkg.com/parse/dist/parse.js, and the minified production version is at https://unpkg.com/parse/dist/parse.min.js.

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. For server side rendered applications, you may set the SERVER_RENDERING variable to prevent warnings at runtime.

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

const Parse = require('parse');
// ES6 Minimized
import Parse from 'parse/dist/parse.min.js';

For web worker or browser applications, indexedDB storage is available:

Parse.CoreManager.setStorageController(Parse.IndexedDB);

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

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

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

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

// On React Native >= 0.50 and Parse >= 1.11.0, set the Async
const AsyncStorage = require('react-native').AsyncStorage;
Parse.setAsyncStorage(AsyncStorage);

For WeChat miniprogram, include 'parse/weapp':

// In a WeChat miniprogram
const Parse = require('parse/weapp');

If you want to use a pre-compiled file, you can fetch it from unpkg. The development version is available at https://unpkg.com/parse/dist/parse.weapp.js, and the minified production version is at https://unpkg.com/parse/dist/parse.weapp.min.js.

For TypeScript applications, install '@types/parse':

$ npm install @types/parse

Types are updated manually after every release. If a definition doesn't exist, please submit a pull request to @types/parse

Upgrading to Parse SDK 2.0.0

With Parse SDK 2.0.0, gone are the backbone style callbacks and Parse.Promises.

We have curated a migration guide that should help you migrate your code.

3rd Party Authentications

Parse Server supports many 3rd Party Authenications. It is possible to linkWith any 3rd Party Authentication by creating a custom authentication module.

Want to ride the bleeding edge?

We recommend using the most recent tagged build published to npm for production. However, you can test not-yet-released versions of the Parse-SDK-JS by referencing specific branches in your package.json. For example, to use the master branch:

npm install parse-community/Parse-SDK-JS.git#master

Experimenting

You can also use your own forks, and work in progress branches by specifying them:

npm install github:myUsername/Parse-SDK-JS#my-awesome-feature

And don't forget, if you plan to deploy it remotely, you should run npm install with the --save option.

Contributing

We really want Parse to be yours, to see it grow and thrive in the open source community. Please see the Contributing to Parse Javascript SDK guide.

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.

As of April 5, 2017, Parse, LLC has transferred this code to the parse-community organization, and will no longer be contributing to or distributing this code.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].