While the design for this project is intended to be in similar design to the allrecipe cooking site.
The primary function of this project was to utilize a database, in this case MongoDB. The goal was also to utilize Express, NodeJS, and basic js
to build a fully functioning website. Where you can create, delete, and view recipes. As well as attach images for your recipes!
The homepage is where the list of created recipes is displayed, organized from newest to oldest.
Clicking on any recipe will lead you to a page
that only displays the Recipe in question using MongoDB's "_id" object key to locate the recipe. And on that page is the option to delete the
recipe and remove it from the database.
Upon clicking for a new recipe, you would be redirected to an entirely new page with a form element that has a list of inputs,
where the required fields have the expected * for ease of User recognition.
This form, upon submitting the filled out form, accesses the Database cluster and uploads the values of the form into a new object,
with a unique ID key value for later access or deletion.
And lastly, just for aesthetic purposes of this project, an about us page where a company can display their values, mission, or history involving why the website came to be or how the business has been thriving.
Overall this code presented a good challenge, and required learning of new skills involving accessing a database, running a database, and delving deeper in to my understanding of NodeJS.
A JS language, where at the time I had little exerience with and overall proved to be essential going forward with my coding journey.
Source Code