/ts-api

Primary LanguageTypeScript

ts-api-example

Export system environment

  • PORT: 5000

Start Script

# debug mode
npm run dev:debug
# release mode
npm run build
npm start

API

GET /api/health

OK

POST /api/users/login

Request body:

{
   "username": "test",
   "password": "test" 
}

Resopnse body:

{
    "id": "001",
    "username": "test",
    "password": "test"
}