From 74dbf4192e7dff6a57a3e40e522dbc7fc35bbb89 Mon Sep 17 00:00:00 2001 From: Jonas Stendahl Date: Mon, 26 Nov 2018 14:04:15 +0100 Subject: [PATCH] Update assignment description --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c564d435..efe7bf9f 100644 --- a/README.md +++ b/README.md @@ -28,10 +28,13 @@ NodeJS - https://nodejs.org/en/download/ Your assignment is to improve this todo list application. At the moment the application is simple and can only create and remove todos. As is, nothing is persisted in the server. As a result all state is cleared when refreshing the page! +Below follows one main task and 4 additional tasks. Your assignment is to complete the main task together with at least 2 out of 4 of the additional tasks. -Below are some suggested improvements: +### Main Task -- Persist todos on the server. Persisting in a database is not required. (Simple js structures on the server is fine). If a database is desired an in memory database is provided. (lokijs) +Persist todos on the server. Persisting in a database is not required. (Simple js structures on the server is fine). If a database is desired an in memory database is provided. (lokijs) + +### Additional tasks - Make it possible to indicate that a todo is completed. - Indicate that a todolist is completed if all todo items within are completed. - Don't require users to press save when an item is added or deleted from the todolist. (Autosave functionality)