Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/davila23/nodejs-postgresql

Setup Node Api with Postgresql and express
https://github.com/davila23/nodejs-postgresql

babel express nodejs postgresql sequelize

Last synced: 17 days ago
JSON representation

Setup Node Api with Postgresql and express

Awesome Lists containing this project

README

        


horizontal_tagline_black_on_white_by_logaster (1)

# Project Description
This is a simple REST API using Javascript Technologies and PostgreSQL.
- nodejs
- express
- postgreSQL
- sequelize
- babel

# Project Structure
```
.
├── package.json
├── package-lock.json
├── README.md
├── sql
│ └── db.sql
└── src
├── app.js
├── controllers
│ ├── project.controller.js
│ └── task.controller.js
├── database
│ └── database.js
├── index.js
├── models
│ ├── Project.js
│ └── Task.js
└── routes
├── projects.js
└── tasks.js

6 directories, 13 files
```