An open API service indexing awesome lists of open source software.

https://github.com/zacharytamas/clickup-client

A browser/Node.js client for interacting with ClickUp's v2 API. Authored in TypeScript.
https://github.com/zacharytamas/clickup-client

clickup clickup-api typescript

Last synced: 2 months ago
JSON representation

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

Awesome Lists containing this project

README

        

# clickup-client

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

## Example Usage

```typescript
import clickUpClient from '@clicked/client';

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

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

const newTask = await client
.list('')
.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.