Lab - Simple Todo List and curl
Need a bare app for quick reference and experiments. Preparation * Node.js, optionally yarn Todo App Create a project folder and setup a dummy todo-list Express app: mkdir todo cd todo yarn init -y yarn add express with the file app.js const express = require('express'); const PORT