Dart is Project Management powered by AI.
dart-tools
is the Dart TypeScript/JavaScript Library. It enables direct integration with Dart through TypeScript or JavaScript.
npm i dart-tools
Visit your Dart profile and save the authentication token into the DART_TOKEN
environment variable.
To use this package in a CommonJS (CJS) script, you can require the module with
const dart = require("dart-tools");
To use this package in an ECMAScript Module (MJS) script, you can import the module with
import * as dart from "dart-tools";
// Get all critical tasks
import { TaskService, PaginatedConciseTaskList } from "dart-tools";
const filteredTasks: PaginatedConciseTaskList = await TaskService.listTasks({
priority: "Critical",
});
// Create a new task called 'Update the landing page' with priority 'Critical' (i.e. p0)
import { TaskService, WrappedTask } from "dart-tools";
const task: WrappedTask = await TaskService.createTask({
item: {
title: "Update the landing page",
priority: "Critical",
},
});
- Homepage
- Web App
- Help Center
- Bugs and Features
- Library Source
- Chat on Discord
- Email us at support@itsdart.com
Contributions are welcome! Please open an issue or submit a pull request.
This project is licensed under the MIT License.