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

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

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
```