Book Image

PhoneGap 3.x Mobile Application Development HOTSHOT

By : Kerri Shotts
Book Image

PhoneGap 3.x Mobile Application Development HOTSHOT

By: Kerri Shotts

Overview of this book

<p>PhoneGap allows you to use your existing knowledge of HTML, CSS, and JavaScript to create useful and exciting mobile applications.<br /><br />This book will present you with 12 exciting projects that will introduce you to the dynamic world of app development in PhoneGap. Starting with their design and following through to their completion, you will develop real-world mobile applications. Each app uses a combination of core PhoneGap technologies, plugins, and various frameworks covering the necessary concepts you can use to create many more great apps for mobile devices.</p>
Table of Contents (21 chapters)
PhoneGap 3.x Mobile Application Development HOTSHOT
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Chapter 12. Building a Backend – Working with Parse

Many apps will eventually need to store some data on an external server; something that isn't local to the device. For example, if an app provided the ability to sync data from one device to another, this will require some sort of backend. If a game wanted to have an achievements system where players could see how they were rated against each other, it would need some sort of backend as well. In fact, even apps that seem to need no backend often do need something of the sort, even if it is very simple. You can consider, for example, an app that simply needs to update its content from an external server on a regular basis; this server will be the app's backend.

Backends have historically required users to set up their own servers. This is often a costly endeavor, and many small developers may not have the funds needed to support the server and the incoming or outgoing bandwidth. Further, these often introduce security issues that small shops...