From fea2b73c126929d85d88bf23452d0ac141706375 Mon Sep 17 00:00:00 2001 From: david-asem Date: Fri, 8 Oct 2021 19:14:37 +0000 Subject: [PATCH 1/2] Added a new app idea called BookList --- Projects/2-Intermediate/Book-List-App.md | 25 ++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 Projects/2-Intermediate/Book-List-App.md diff --git a/Projects/2-Intermediate/Book-List-App.md b/Projects/2-Intermediate/Book-List-App.md new file mode 100644 index 00000000..7b8aa40e --- /dev/null +++ b/Projects/2-Intermediate/Book-List-App.md @@ -0,0 +1,25 @@ +# Book List + +**Tier:** 2-Intermediate + +It is rare to see projects built with object-oriented programming pattern in Javascript with localStorage especially when you're just starting out. + +- The aim of the book list project is to give developers and learners the opportunity to build an app in object-oriented pattern using ES5 & ES6 syntax while learning javascript. It will also teach developers how to implement localStorage in javascript. +- The project Uses Skeleton CSS for styling but feel free to use any other library you prefer...be creative and make it the way you want it to be. + +## User Stories + +- [ ] User can add book title using the "Title field". +- [ ] User can add book author using the "Author field". +- [ ] User can add book ISBN number using the "ISBN field". +- [ ] User can delete book after it is added. +- [ ] User can see a list of the books added with all their informations +- [ ] User can update a any informations of the books added with. + +## Useful links and resources + +- [Skeleto CSS CDN](https://cdnjs.com/libraries/skeleton/) + +## Example projects + +- [Book List App](https://github.com/david-asem/bookList) From 1112254b940a9cdfb791abeb79a5cd390281baa2 Mon Sep 17 00:00:00 2001 From: david-asem Date: Fri, 8 Oct 2021 19:24:23 +0000 Subject: [PATCH 2/2] fixed spelling mistake in Skelenton CSS --- Projects/2-Intermediate/Book-List-App.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Projects/2-Intermediate/Book-List-App.md b/Projects/2-Intermediate/Book-List-App.md index 7b8aa40e..8e3290e0 100644 --- a/Projects/2-Intermediate/Book-List-App.md +++ b/Projects/2-Intermediate/Book-List-App.md @@ -18,7 +18,7 @@ It is rare to see projects built with object-oriented programming pattern in Jav ## Useful links and resources -- [Skeleto CSS CDN](https://cdnjs.com/libraries/skeleton/) +- [Skeleton CSS CDN](https://cdnjs.com/libraries/skeleton/) ## Example projects