Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/iamjooon2/runninus-server
2022 Spring Semester Graduation Project
https://github.com/iamjooon2/runninus-server
koa typescript
Last synced: about 2 months ago
JSON representation
2022 Spring Semester Graduation Project
- Host: GitHub
- URL: https://github.com/iamjooon2/runninus-server
- Owner: iamjooon2
- Created: 2022-06-25T09:01:33.000Z (over 2 years ago)
- Default Branch: dev
- Last Pushed: 2022-09-23T14:35:20.000Z (over 2 years ago)
- Last Synced: 2023-03-07T11:36:00.973Z (almost 2 years ago)
- Topics: koa, typescript
- Language: TypeScript
- Homepage:
- Size: 125 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# RunninUs-Server
boilerplate로 써먹을 것 같아서 따로 뺌
# 설계 UMLs
[DB스키마](https://app.quickdatabasediagrams.com/#/d/AjMt8U)
# gettings started
```
npm run dev
```# package structue
```
📂 git@bonobonoz/RunninUs-Server
┣📂 src
┣📂 assets # DB 생성 쿼리와 접근 쿼리
┣📂 controllers/v1 # REST API controllers
┣📂 errors # 사용자 지정 error들
┣📂 guards # typescript type guard
┣📂 libraries # DB 어댑터
┣📂 middlewares # REST API middlewares
┣📂 routers/v1 # 메서드 종류와 요청에 따른 분기를 다룸
┣📂 types # TypeScript type들을 담는 곳
┣📂 utilities
┣📂 validators
┣📜 app.ts
┣ .env.example # .env파일 예제
┣ tsconfig.json
┣ package.json```