emotz / kladovka

Optimizer of inventory for games
http://kladovka.herokuapp.com/
MIT License
0 stars 0 forks source link

Make REST API server #15

Closed Eoksni closed 7 years ago

Eoksni commented 7 years ago

REST API videos: http://www.restapitutorial.com/lessons/whatisrest.html

torrent magnet: magnet:?xt=urn:btih:bb036abe3baf3df6f4423bcee9d392aae447084a&dn=RESTful%20Web%20Services%20with%20Node.js%20and%20Express&tr=http%3A%2F%2Fbt3.t-ru.org%2Fann&tr=http%3A%2F%2Fretracker.local%2Fannounce

VSCode extension to test REST APIs: https://github.com/Huachao/vscode-restclient

request: POST /api/items

{ "type": "sword", ... }

result: 201 Created Location: /api/items/e166d2af-f823-0217-407a-cdfb6d49c79d

GET /api/items

[
  {
    "id": "e166d2af-f823-0217-407a-cdfb6d49c79d",
    "type": "sword",
    ...
  }
]