Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/alveflo/yaml-todos

A todo list generator using yaml as input data.
https://github.com/alveflo/yaml-todos

Last synced: 14 days ago
JSON representation

A todo list generator using yaml as input data.

Awesome Lists containing this project

README

        

# yaml-todos
A todo list generator using yaml as input data.

#### installation
This application runs on [node.js](http://nodejs.org) and is installed via node package manager:
```
> (sudo) npm install -g yaml-todos
```

#### run
```
> (sudo) yaml-todos -f file_name.yaml
```

#### syntax
The input yaml file must have a 'todos' key. This is simply because the web app is looking for this key when listing the tasks. See below for correct input syntax
```yaml
todos:
- :
- :
- :
- :
```

#### example
1 - Create a yaml-file containing your todo-list:

*todos.yaml*
```yaml
todos:
- Install: Install this application from npm
- Write todos: Write a todo list
- Run: Run the application
```

2 - Run the application
```
> (sudo) yaml-todos -f todos.yaml
```

3 - Done! [Image](https://raw.githubusercontent.com/victoralveflo/yaml-todos/master/img/example.png)

#### license
MIT