JSPM

  • Created
  • Published
  • Downloads 3029
  • Score
    100M100P100Q120311F
  • License MIT

Modern VK API SDK for Node.js

Package Exports

  • vk-io

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (vk-io) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

NPM version Build Status NPM downloads Code quality

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

📖 Documentation 🤖 Examples

Features

  • 100% coverage of the VKontakte API
  • Predictable abstraction
  • Works with large collections of data
  • Support for all types of authorization, including via login and password
  • Typings

Migrating to 4.0.0

You can read the migration guide here.

Old version of the library is located here.

Installation

Node.js 8.0.0 or newer is required

Yarn

Recommended, auto assembly

yarn add vk-io

NPM

npm i vk-io

Example usage

import VK from 'vk-io';

const vk = new VK();

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