Todo list api. The application allows the user to add, edit and delete tasks, as well as mark them as completed
First, you need copy .env.example file content into .env.dev file.
cp .env.example .envInstall dependencies:
npm installRun server in dev mode:
npm run serveIf you see the following response in the browser:
{"message":"OK", "statusCode": 200, "data":"2022-02-13T20:05:13.965Z"}
It means that everything work as expected.
Run code quality analysis using
npm run lintAutomatically fix linter's problems
npm run lint:fix