Home

Awesome

Using Parse with Fuse Example

Example project to accompany the "Using Parse with Fuse" Fuse tutorial video. This is a super simple app using back{4}app as a backend service, where anyone can simply post text, and anyone else can see that text. All relevant code is in the MainView.ux file.

Note: This example has also been ported to use Syncano in @bolav's fork: https://github.com/bolav/fuse-example-using-syncano !

Setup

NOTE: this is covered in the tutorial video.

You'll need to use your own Parse app backend with this example. Insert your app's Application ID and Javascript Key into the api-keys.js file:

module.exports = {
	appId: "YOUR APP ID HERE",
	jsKey: "YOUR JS KEY HERE"
};

Once that's done, you're ready to roll!

Fuse version

This example was produced with Fuse (beta) v0.8.4.

And there is another repo with newer v0.12.4 at: https://github.com/tim-hub/fuse-tutorial-project/tree/master/Lesson13UsingParse

Branches

The "finished product" is on the master branch, and the template I started with in the video is on the starting-template branch.

License

This code is licensed under the BSD2 license (see LICENSE). The Parse JavaScript SDK v1.6.7 is licenced under its own BSD-style license (see parse-1.6.7.js).