https://github.com/rezapfebriyan/expressjs-online-store
Clean Architecture restful API online store
https://github.com/rezapfebriyan/expressjs-online-store
clean-architecture expressjs mysql nodejs rest-api
Last synced: 3 months ago
JSON representation
Clean Architecture restful API online store
- Host: GitHub
- URL: https://github.com/rezapfebriyan/expressjs-online-store
- Owner: rezapfebriyan
- Created: 2023-03-30T07:23:31.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2023-11-06T13:14:41.000Z (over 1 year ago)
- Last Synced: 2025-01-09T21:37:29.607Z (5 months ago)
- Topics: clean-architecture, expressjs, mysql, nodejs, rest-api
- Language: JavaScript
- Homepage:
- Size: 78.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# nodejs-online-store
### Clean Architecture and DDD Restful API online store (using express JS)
Source: *youtube.com/daridasar*
### Getting Start Guide
Clone this repo to your local computer.
Run the command bellow to install package dependencies (get node_modules)
```sh
npm install
```Run the command below to generate the table automatically
```sh
npx knex migrate:latest
```Run the command below to insert data to table (run seeder)
```sh
npx knex seed:run
```Run the command bellow to start your app:
```sh
npm start
```