ticktick-wrapper

0.2.0 • Public • Published

TickTick Wrapper for Node

This package is meant to be a wrapper that allows you to automate your actions on TickTick.

It calls the undocumented API, used by the web app, that can change at any time, use with caution.

Getting started

Install the package by executing:

npm install -s ticktick-wrapper

Example

const ticktick = require('ticktick-wrapper');

const main = async () => {
  await ticktick.login({
    email: {
      username: 'username',
      password: 'password',
    },
  });

  const title = 'Automated task';
  const description = 'This is a task added programatically via ticktick-wrapper';
  await ticktick.Inbox.addSimpleTask(title, description);
};

main();

Documentation

Documentation and the API can be found here

Readme

Keywords

Package Sidebar

Install

npm i ticktick-wrapper

Weekly Downloads

13

Version

0.2.0

License

MIT

Unpacked Size

27.9 kB

Total Files

12

Last publish

Collaborators

  • mmello