Small REST-service to practice creating REST service without Express, Nest or similar library.
- Node.js
- TypeScript , with experimental Node.js TS Run
- SqLite3
- ESLint , with ESLint Stylistic
/postsGET- receive posts listPOST- create a new post (JSON body{ name: string, description: string})
/posts/{id}GET- get post by idPUT- update postDELETE- remove post by id from database