node-todoist-syncdeprecated

Todoist sync API for Node

Usage no npm install needed!

<script type="module">
  import nodeTodoistSync from 'https://cdn.skypack.dev/node-todoist-sync';
</script>

README

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.