Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/ryan-menezes/blog
- Owner: Ryan-Menezes
- License: mit
- Created: 2022-04-17T00:07:31.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-07-31T17:49:30.000Z (over 2 years ago)
- Last Synced: 2023-08-15T09:02:25.184Z (over 1 year ago)
- Topics: blog, mongodb, mongoose, nodejs
- Language: JavaScript
- Homepage:
- Size: 3.6 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```