Recipe Box - FCC Challenge - Part 2
Repository and web page
https://github.com/zdflower/recipeBoxFCC
https://zdflower.github.io/recipeBoxFCC/
What’s new
Well, I made a basic static page that renders a list of recipes, with names and ingredients. The recipes come from a list of objects with the structure: {name: String, ingredients: Array of Strings}.
In spite of having said that I would leave style for later, I added some simple style. I used sass (variables, nesting), I’ve just started to learn it.
User stories:
https://www.freecodecamp.org/challenges/build-a-recipe-box
- I can create recipes that have names and ingredients.
- I can see an index view where the names of all the recipes are visible.
- I can click into any of those recipes to view it.
- I can edit these recipes.
- I can delete these recipes.
- All new recipes I add are saved in my browser’s local storage. If I refresh the page, these recipes will still be there.
Actual readings
Future readings
- Web Storage API
- HTML5 - Storage