Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/isaac-alencar/bloggy-api
https://github.com/isaac-alencar/bloggy-api
Last synced: 22 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/isaac-alencar/bloggy-api
- Owner: Isaac-alencar
- Created: 2020-06-03T16:02:15.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-12-22T16:51:51.000Z (about 2 years ago)
- Last Synced: 2023-03-09T03:21:05.400Z (almost 2 years ago)
- Language: JavaScript
- Size: 422 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Bloggy API
[![N|Solid](https://hackernoon.com/hn-images/1*Qtaw9MXAkwlHQlzAQYScFA.png)](https://nodesource.com/products/nsolid)
#### API builded with NodeJS + Sequelize & Express
This API was builded for a microblog. I just use a Simple CRUD, JWT authentication and more.# Get started
First thing first, install sequelize
```ssh
$ npm install --save sequelize
```
ou
```ssh
$ yarn add sequelize
```now, it’s the part that you choose your SQL database, on this project, was chosen
postgres. Postgres is an amazing SQL database as bigger as you'll needed and performatic too. So, let's add:
```ssh
$ npm install --save pg pg-hstore
```
ou
```ssh
$ yarn add pg pg-hstore
```And just init code!!