Socket
Socket
Sign inDemoInstall

@paulll/vklib

Package Overview
Dependencies
10
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @paulll/vklib

fast vk api library


Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

node-vkapi

Быстрый клиент для API Вконтакте.

Особенности

  • Мало зависимостей (4, считая рекурсивно)
  • Упаковка запросов в Execute
  • Автоматическая загрузка списков (где поля items, count)
  • Параллельные запросы и ограничение количества запросов в обработке
  • Приоритезация запросов
  • Повтор запроса при ошибке или таймауте
  • Троттлинг запросов с access_token
  • Использование access_token как fallback при обращении с service_token

Установка

npm i -S @paulll/vklib

Пример

const api = new API({ access_token, service_token });
const friends = await api.fetch('friends.get', {user_id: 0, fields: 'photo_max'});
const me = (await api.fetch('users.get', {user_ids: 0}, {priority: 10}))[0];

Keywords

FAQs

Last updated on 21 Oct 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc