Implementation of a Rest API that uses HTTP verbs in order to realize CRUD operations on the database created (SQLite)
To run this project is necessary to install the package below
npm install
GET: '/tasks' & '/tasks/:id'
POST: '/tasks'
PUT: '/tasks/:id'
DELETE: '/tasks/:id'