0.0.3 • Published 10 years ago

node-todoist-sync v0.0.3

Weekly downloads
2
License
MIT
Repository
github
Last release
10 years ago

Build Status

Dependencies

Todoist sync API for Node

Getting Started

Install the module with: npm install node-todoist-sync

var nodeTodoistSync = require('../lib/node-todoist-sync.js');

var client = new nodeTodoistSync({
	email: 'your@email.com',
	password: 'YourPassword',
	seq_no: 0 // seq_no=0 for initial sync
});

// fetch all data from Todoist
client.fetchData().then(function (response) {
	console.log(response);
});

Documentation

(Coming soon)

Examples

(Coming soon)

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.

License

Copyright (c) 2014 Vitaly Kondratiev
Licensed under the MIT license.