Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vicentefb/recipe-web-application
Simple Recipe Web Application developed with HTML/CSS, Node.js and MongoDB
https://github.com/vicentefb/recipe-web-application
Last synced: about 15 hours ago
JSON representation
Simple Recipe Web Application developed with HTML/CSS, Node.js and MongoDB
- Host: GitHub
- URL: https://github.com/vicentefb/recipe-web-application
- Owner: vicentefb
- Created: 2021-09-02T04:15:11.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2021-09-02T04:19:26.000Z (about 3 years ago)
- Last Synced: 2023-09-03T01:08:03.391Z (about 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 23.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Recipe Web Application
Recipe Web Application is a very simple web app for recipes.
### Build
```sh
git clone https://github.com/vicentefb/Recipe-Web-Application.git
cd Recipe-Web-Application
npm install
npm run devStart
```
Go to **localhost:3000**### Tech
Following the MVC (Model, View, Controller) pattern, Recipe-Web-App uses some open source projects to work properly:
* HTML and CSS for structuring and styling the web app
* [node.js] - evented I/O for the backend
* [Express] - fast node.js network app framework
* [MongoDB] - database[MongoDB]:
[node.js]:
[express]:### Folder structure
```
.
├── model # Handles data logic and interacts with database
├── public # Contains CSS stylesheets
├── routes # Handles request flow
├── views # Handles data presentation and it is dynamically rendered
├── .gitignore
├── README.md
├── package-lock.json
├── package.json
└── server.js
```