https://github.com/manhyuk/express-sequelize-boilerplate
https://github.com/manhyuk/express-sequelize-boilerplate
express-boilerplate
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/manhyuk/express-sequelize-boilerplate
- Owner: ManHyuk
- Created: 2018-08-03T15:24:15.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-08-15T08:42:44.000Z (about 7 years ago)
- Last Synced: 2025-04-23T18:14:02.968Z (6 months ago)
- Topics: express-boilerplate
- Language: JavaScript
- Size: 11.7 KB
- Stars: 11
- Watchers: 1
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Nodejs(Express) + Sequelize Boilerplate
---
## Env
- Node.js V.8.11.3
- Express V.4.16.0
- Sequelize V.2.22
- mocha V.5.2
- nyc V.12.2
---## TODO
---
1. Controller 와 Service 사이에 하나의 레이어를 더 추가
2. Config 파일 하나로 합치기## Install And Use
---
1. Start by cloning this repository
```
# HTTPS
$ git clone https://github.com/ManHyuk/express-sequelize-boilerplate.git$ cd express-sequelize-boilerplate
$ rm -rf .git
```2. Install module
```
$ npm install
```3. START
```
# macOS
$ export NODE_ENV=YOUR_ENV$ npm start
```4. TEST
```
$ npm test
```