Skip to content

brunolemos/parse-sdk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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 :)

Releases

No releases published

Packages

No packages published