Skip to content

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

Notifications You must be signed in to change notification settings

Congiary/yandex-tracker-client

Repository files navigation

Yandex Tracker Client

Клиент для работы с API Яндекс Трекера

Установка

npm i yandex-tracker-client

Использование

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);
});

About

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

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published