Giter Club home page Giter Club logo

todoist-nodejs's Introduction

todoist-nodejs

GitHub License Todoist API npm version

The unofficial Todoist Node.js API library. Use todoist SYNC API.

Installation

npm install todoist-nodejs

or

yarn add todoist-nodejs

Usage

To get started create new instance of todoist, pass it your API token and make sync to login.

const todoist = require('todoist-nodejs');

const api = new todoist(<TOKEN_API>);
api.sync();

After sync you can do everything you want. Some examples are below. Pay attention, that any changes first of all are placed in queue. So you should call commit method to sync it with todoist servers.

api.commit();

Examples

Performing a add item request

const todoist = require("../build/index");

const api = new todoist(process.env.TOKEN_API);
api
  .sync()
  .then(() =>
    api.items.add('task1', {
      priority: 4,
      due: {
        string: 'today'
      }
    })
  )
  .then(() => api.commit());

Development

  1. Clone repo and install dependencies.
npm install
  1. Create '.env' (.env.example is on the root of the repo) and insert your TOKEN_API.
  2. Build it:
npm run build

Β Β Β Before every commit it will be rebuilded using pre-commit hook.

  1. Use examples to test your changes.

Contributing

Feel free to improve the code and implement new features.

todoist-nodejs's People

Contributors

mtalstykh avatar mtalstykh-exadel avatar dependabot[bot] avatar ws avatar pedro-m-vazquez avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.