8000 GitHub - admc/asana-summary: Generate a report of all the closed tasks in the last week.
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

admc/asana-summary

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

asana-summary

  • Get a summary of the tasks that were marked completed in the last week in your asana projects

Update node to latest

http://nodejs.org/#download

Install

npm install asana-summary

Authors

  • Adam Christian (admc)

License

Usage

> export asanaKey='asana key goes here'

Just run it

> sudo npm install asana-summary -g
> source your bin (> source ~/.zshrc for example, or open a new tab)
> asana-summary

Make the scripts

var summary = require("asana-summary")()
  , colors = require("colors")
  ;

summary.on('header', function(line) {
  console.log(line.green);
});

summary.on('bullet', function(date, task) {
  console.log(date.underline.cyan, task);
});

summary.on('workspace', function(line) {
  console.log(line);
});

summary.on('user', function(line) {
  console.log(line);
});

summary.on('task', function(line) {
  console.log(line);
});

summary.go();

About

Generate a report of all the closed tasks in the last week.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
0