Skip to content

Instantly share code, notes, and snippets.

View singhayushh's full-sized avatar
🌃
depresso

Arc singhayushh

🌃
depresso
View GitHub Profile
@singhayushh
singhayushh / done.js
Created December 19, 2020 05:33 — forked from v3rse/done.js
A simple command line todo list app written using Node.js. Run using `node ./done.js` or create an alias `alias done=node ./done.js`
//This is a simple command line todo list app
//Features
//-create todo item
//-list todo item
//-check todo item off list
//-delete todo item
var fs = require('fs');