0.0.2 • Published 12 months ago
clickup-helper v0.0.2
ClickUp Helper
This is a fetch wrapper that provides a few methods for getting spaces, folders, lists, and tasks from the ClickUp API. Currently, does not support updating / creating anything (POST requests) via the API.
Usage
npm i clickup-helper
import { ClickUpHelper } from "clickup-helper";
const clickup = new ClickUpHelper("CLICKUP_API_KEY");
const tasks = await clickup.getTeamData(["spaceID1", "spaceID2"]);
console.log(tasks.length);