Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

vk-io-stable

cypcep11MIT1.0.2TypeScript support: included

Модуль для создания бота VK

vk-bot, bot, vk, bot-vk

readme

VK-IO-STABLE - This is a powerful Node.js module that allows you to easily interact with the VK API 🚀

Installation

Node.js 8.0.0 or newer is required

Yarn

Recommended

yarn add vk-io-stable

NPM

npm i vk-io-stable

Example usage

import VK from 'vk-io-stable';

const vk = new VK({
    token: process.env.TOKEN
});

async function run() {
    const response = await vk.api.wall.get({
        owner_id: 1
    });

    console.log(response);
}

run().catch(console.log);

Community

Useful modules that may be useful to you