3Building a Minimal Web App with Plain JS in Seven Steps
In this chapter, we show how to build a minimal front-end web application with plain JavaScript and Local Storage. The purpose of our example app is to manage information about books. That is, we deal with a single object type: Book
, as depicted in the class diagram of Figure 3.1.
The following table shows a sample data population for the model class Book
:
Table 3.1 A collection of book objects represented as a table
ISBN | Title | Year |
006251587X | Weaving the Web | 2000 |
0465026567 | Gödel, Escher, Bach | 1999 |
0465030793 | I Am A Strange Loop | 2008 |
What do we need ...
Get Web Applications with Javascript or Java now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.