1.0.1 • Published 5 years ago

call-vk v1.0.1

Weekly downloads
5
License
MIT
Repository
github
Last release
5 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

5 years ago

1.0.0

5 years ago

0.2.4

5 years ago

0.2.3

5 years ago

0.2.2

5 years ago

0.2.1

5 years ago

0.2.0

5 years ago

0.1.4

5 years ago

0.1.3

5 years ago

0.1.2

5 years ago

0.1.1

5 years ago

0.1.0

5 years ago