1.0.1 • Published 6 years ago

call-vk v1.0.1

Weekly downloads
5
License
MIT
Repository
github
Last release
6 years ago

Calling VK API methods easier

NPM version NPM weekly downloads

Installation

npm install --save call-vk

Get Started

For example, we call the users.get method, that returns array of users whose id we specified in user_ids

const callVk = require('call-vk')

const params = {
  user_ids: 1
}

const config = {
  accessToken: '<access_token>',
  version: 5.95
}

callVk('users.get', params, config)
  .then(users => console.log(users[0]))
  .catch(console.log)
1.0.1

6 years ago

1.0.0

6 years ago

0.2.4

6 years ago

0.2.3

6 years ago

0.2.2

6 years ago

0.2.1

6 years ago

0.2.0

6 years ago

0.1.4

6 years ago

0.1.3

6 years ago

0.1.2

6 years ago

0.1.1

6 years ago

0.1.0

6 years ago