Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/davila23/nodejs-postgresql
- Owner: davila23
- Created: 2020-01-20T19:37:54.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-04T14:01:33.000Z (about 2 years ago)
- Last Synced: 2024-11-19T22:53:05.715Z (3 months ago)
- Topics: babel, express, nodejs, postgresql, sequelize
- Language: JavaScript
- Homepage:
- Size: 769 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 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.js6 directories, 13 files
```