Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/v3rse/done
A simple command line todo list app written in Node.
https://github.com/v3rse/done
productivity todo
Last synced: about 14 hours ago
JSON representation
A simple command line todo list app written in Node.
- Host: GitHub
- URL: https://github.com/v3rse/done
- Owner: v3rse
- License: mit
- Created: 2016-09-06T17:59:02.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-10-14T01:26:20.000Z (about 7 years ago)
- Last Synced: 2023-08-19T02:54:18.221Z (over 1 year ago)
- Topics: productivity, todo
- Language: JavaScript
- Size: 115 KB
- Stars: 8
- Watchers: 1
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
DONE!! [![Code Triagers Badge](https://www.codetriage.com/v3rse/done/badges/users.svg)](https://www.codetriage.com/v3rse/done)
---##Intro
![Screenshot](screenshot.png)
I created this project while I was filling out the form for [RC](www.recurse.com). It's a simple command line TODO list app.
##Installation
```bash
git clone https://github.com/v3rse/done.git
cd
npm install
#put this in your bash-profile file
alias done="node "
```
Where `` is where you want `done` to live##Usage
```bash
#add a task
done add "Write an npm module"#list tasks
done#check off a task
done check#delete a task
done delete
```## Workflow
* I organise project specific tasks into their corresponding directories. `done` creates a new data file wherever you run it.
* I put my weekly overall tasks in my home directory and run `done` whenever I open a terminal.### Ignore the `.json` file
A good idea is to add `.database.json` to your `.gitignore` files if you're using this in a git project directory.## Contribute
Check out the [issues](https://github.com/v3rse/done/issues).If you don't want to contribute code you could also contribute thought :neckbeard: [here](https://github.com/v3rse/done/issues/2).
Follow the __Installation__ instructions to get the code on your computer.