January 2013
Beginner
424 pages
13h 26m
English
This chapter covers
Although your web application should be designed to work offline, most web applications also need to store some data on a server, whether in the filesystem, in an SQL-based solution such as MySQL, or in a NoSQL database such as CouchDB. The nature of the web is that users of your application will connect from different machines, which means even if data isn’t stored on the server, you’ll use a server component to provide server synchronization.
In this chapter, we’ll revisit the DartExpense application ...