GitXplorerGitXplorer
b

parse-sdk

public
2 stars
0 forks
0 issues

Commits

List of commits on branch master.
Unverified
4450c5a2b2b08ef3b107c85ff86099f6b68df570

Delete .versions file

bbrunolemos committed 8 years ago
Unverified
6c3c04deeb722a4388212a99bcd112a247668f2b

v1.9.1

bbrunolemos committed 8 years ago
Unverified
05a68ab8b393dac4f28bcb4a97e78e88d3954a1d

Deprecation notice in favour of npm

bbrunolemos committed 8 years ago
Unverified
f018d95302de805362d25cb06831880e7da147f1

1.8.5

bbrunolemos committed 8 years ago
Unverified
964056a9d3731b2401f74c4a377cbe4d4eefe362

v1.6.7

bbrunolemos committed 9 years ago
Unverified
b6e5e93e36eef0192be278f887015e71e0d37d8d

v1.6.5

bbrunolemos committed 9 years ago

README

The README file for this repository.

Parse SDK

Deprecation Notice

Since Meteor 1.3, you don't need an atmosphere wrapper anymore. Use the official npm package instead.

meteor npm install parse

What is this?

This Meteor's package is a simple wrapper to Facebook's Parse Javascript SDK

What does it do?

This package will simply add a global Parse object to your application and keep it updated for you.

What doesn't it do?

It does not provide any deep integration with your collections.

Parse?

Parse is a cloud provided by Facebook to easily power cross-platform apps. It provides:

  • Database storage
  • Push notifications
  • Analytics
  • More

How to use it?

Installation

In your meteor project:

meteor add brunolemos:parse-sdk

In your /lib folder:

Meteor.startup(function() {
  Parse.initialize("APPLICATION ID", "JAVASCRIPT KEY");
});

Docs

You will have to follow the Parse's official javascript guide / examples to see how to use it.

Version

This package will follow the Parse Javacript SDK versioning.

New version?

If you see that a newer version is available, ping me on twitter at @brunolemos :)