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.
- Host: GitHub
- URL: https://github.com/zacharytamas/clickup-client
- Owner: zacharytamas
- Created: 2022-02-21T16:20:14.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-04-10T14:19:44.000Z (about 3 years ago)
- Last Synced: 2025-02-13T06:44:17.891Z (4 months ago)
- Topics: clickup, clickup-api, typescript
- Language: TypeScript
- Homepage:
- Size: 52.7 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.