Skip to content

Latest commit

 

History

History
24 lines (15 loc) · 427 Bytes

README.md

File metadata and controls

24 lines (15 loc) · 427 Bytes

node-vk

node.js module to work with vk.com and vkontakte.ru api for desktop/mobile applications

Installation

npm install vk

Usage

var VkClient = require("vk").VkClient;

var vk = new VkClient("<your user's token here>");

vk.api('getProfiles', {uid: 2241140}, function(error, result) {
    console.log("Got args:");
    console.log(arguments);
});

Authors