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)