Book Image

KNOCKOUTJS BLUEPRINTS

By : Carlo Russo
Book Image

KNOCKOUTJS BLUEPRINTS

By: Carlo Russo

Overview of this book

Table of Contents (12 chapters)
KnockoutJS Blueprints
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Defining what Piggy Bank should be


The main goal of this application is the management of the budget.

With an easy-to-use interface, the user should configure the account he wants to manage, the details for each transaction he puts inside, and the budget goal based on categories.

We could expand this application with many server-side additions, such as the direct download of information from the bank account, or the synchronization of the data with the family (in this case, we need an authentication system).

To keep the project easy and make it doable within one chapter, we have to decide which features will be mandatory for our Minimum Viable Product (MVP).

Note

MVP is defined as the product with only those core features that allow the product to be deployed, and no more.

This is the list of the features we need for our MVP:

  • The application is for a single user

  • A user can create many accounts

  • A user puts information about each transaction by hand

  • A transaction is represented with a date, an account...