https://github.com/hengkyawijaya/basic-node
Basic server implementation with node js
https://github.com/hengkyawijaya/basic-node
express node sequelize sql
Last synced: about 2 months ago
JSON representation
Basic server implementation with node js
- Host: GitHub
- URL: https://github.com/hengkyawijaya/basic-node
- Owner: hengkyawijaya
- Created: 2019-09-06T14:18:48.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2022-12-11T04:38:48.000Z (over 3 years ago)
- Last Synced: 2025-03-31T22:36:23.600Z (about 1 year ago)
- Topics: express, node, sequelize, sql
- Language: JavaScript
- Homepage:
- Size: 80.1 KB
- Stars: 0
- Watchers: 1
- Forks: 2
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# basic-node
Educational repository to learn about creating CRUD with nodejs. It using several library :
- expressjs -> web framework
- sequelize -> orm
- cors -> manage cors
- morgan -> logger
- helmet -> security protection
### How to run the application
1. clone the repo
2. open the root application and install the depedencies
```
yarn install
```
3. make sure you already installed docker on your machine
4. start database mysql using docker
```
docker-compose -f db.docker-compose.yml up
```
5. start your application
```
yarn dev
```