Skip to content

A browser/Node.js client for interacting with ClickUp's v2 API. Authored in TypeScript.

Notifications You must be signed in to change notification settings

zacharytamas/clickup-client

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

clickup-client

A browser/Node.js client for interacting with ClickUp's v2 API. Authored in TypeScript and exports ESM modules.

Example Usage

import clickUpClient from '@clicked/client';

(async () => {
  const client = clickUpClient('<my_token>');

  // Getting a list of Tasks in a List.
  const tasksInList = await client.list('<list_id>').listTasks();

  const newTask = await client
    .list('<list_id>')
    .createTask({ name: 'My Task', description: 'A task description' });
})();

Notes

  • For now, this only supports instances where you can provide a Personal Access Token. I am very much building this for my own needs at the moment but if this library becomes useful for others I may go for a more featured approach.

About

A browser/Node.js client for interacting with ClickUp's v2 API. Authored in TypeScript.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published