Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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