Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```