vk-fast-longpoll
RU | Мощный инструмент для работы с VK API, который работает в 25 раз быстрее обычных вызовов API методов.
EN | Powerfull tool for VK api that works 25 times faster then usual api calls
Русский
Установка и начало работы
Установка
npm install vk-fast-longpoll --save
Инициализация
const VK = ;const group = 'token here';
Запуск longpoll соединения
grouplongpollstart;
Начинаем слушать сообщения
grouplongpoll;
Вызов API методов
Все методы VK должны вызываться с префиксом api например
groupapimessages;
Методы возвращают Promise-ы, поэтому стоит добавлять обработчик ошибок к каждому вызову.
groupapimessages;
Все названия методов, а также названия полей полностью соответсвуют названиям из документации VK
Echo пример
const VK = ;const group = 'token here'; grouplongpollstart; grouplongpoll;
Загрузка файлов
//В разработке
English
Installing and getting started
Installing
npm install vk-fast-longpoll --save
Initializing
const VK = ;const group = 'token here';
Longpoll connection start
grouplongpollstart;
Listen to messages
grouplongpoll;
API method calls
All VK Api methods must be called with api
prefix
groupapimessages;
All methods return Promises, therefor you need to catch errors in every api call.
groupapimessages;
All methods names and fields names are equal as VK Api docs
Echo example
const VK = ;const group = 'token here'; grouplongpollstart; grouplongpoll;
File uploading
//In development