Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/congiary/yandex-tracker-client

Клиент для работы с Yandex Tracker с помощью NodeJS
https://github.com/congiary/yandex-tracker-client

Last synced: about 2 months ago
JSON representation

Клиент для работы с Yandex Tracker с помощью NodeJS

Awesome Lists containing this project

README

        

# Yandex Tracker Client
Клиент для работы с API Яндекс Трекера
## Установка
```shell
npm i yandex-tracker-client
```

## Использование
```typescript
import { Tracker } from 'yandex-tracker-client';

const client = new Tracker('your-token', 'your-org-id');

client.get('v2/issues/TICKET-123').then((data) => {
console.log('Ticket data:', data);
});

client.post('v2/issues', {
summary: 'New issue',
description: 'Description of the issue',
queue: 'QUEUE',
}).then((data) => {
console.log('Created ticket:', data);
});

```