Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/ryan-menezes/blog

A simple blog powered by nodejs
https://github.com/ryan-menezes/blog

blog mongodb mongoose nodejs

Last synced: about 23 hours ago
JSON representation

A simple blog powered by nodejs

Awesome Lists containing this project

README

        

# Blog
A simple blog powered by nodejs
## Settings
Have [Node.js](https://nodejs.org/pt-br/) installed on your machine and through your terminal enter the project directory and run the command "npm update":
```sh
cd "project directory"
npm update
```
After that make sure that [MongoDB](https://www.mongodb.com/) is installed on your machine and run the command "mongod" in a separate terminal to start the mongo server:
```sh
mongod
```
Finally, start the node.js server with the command "nodemon start" in a separate terminal:
```sh
cd "project directory"
nodemon app
```