Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/changjoo-park/koa-rest-api-starter-typescript
Koa REST api starter kit using TypeScript
https://github.com/changjoo-park/koa-rest-api-starter-typescript
Last synced: about 1 month ago
JSON representation
Koa REST api starter kit using TypeScript
- Host: GitHub
- URL: https://github.com/changjoo-park/koa-rest-api-starter-typescript
- Owner: ChangJoo-Park
- Created: 2017-11-28T12:47:33.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2017-12-09T06:26:21.000Z (about 7 years ago)
- Last Synced: 2024-11-24T19:47:42.338Z (3 months ago)
- Language: TypeScript
- Size: 465 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Koa REST API starter (TypeScript)
- [x] Watch source during Development
- [x] Logging server with file and db
- [x] Connect with MongoDB
- [x] Automatically creating routes
- [x] Socket.io
- [x] base REST API
- [ ] Create document using api doc
- [ ] JWT Authentication
- [x] Testing with JEST (with preprocessor)
- [x] Sample API Request Client (it needs VSCode [REST Client](https://marketplace.visualstudio.com/items?itemName=humao.rest-client)]
- [x] Lint TSLint with Standard config```
# Dev
npm run watch-server# Test
```Recommend : Use VSCode for typescript fully support.
## Directory Structure
```
.
|--- logs
|--- node_modules
|--- src // ts
|--- controller
|--- model
|--- utils
server.ts
|--- test
|--- tsconfig.json
|--- preprocessor.js
└--- README.md
```