Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

1vk

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

1vk

smart and efficient sdk for vk.com API

  • 1.0.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
decreased by-90%
Maintainers
1
Weekly downloads
 
Created
Source

1vk

Smart and efficient sdk for vk.com API

Behind the scene:

  1. It uses execute api method to perform more api calls per permitted time interval.
  2. It handles "Too many requests per second" error thus you no more need concern about it.

Install

npm i 1vk --save

How to use

With browser (vk.com open api sdk)

// initialization and authorisation (VK.init , VK.Auth.login)
// then
var apiQueue = new VK(3, 1e3, VK.Api.call)
var usersFriends = [];
// gets friends for 1000 users
for (var i=0; i<1e3; i=i+1)
    apiQueue.request('friends.get', {user_id: i}).then(function(friends) {
        console.log(friends)
    })

With node

You can use any open api like library (function (methodName, params, callback))

Docs

Please read source code. The code is pretty simple and jsdoc annotated.

Keywords

FAQs

Package last updated on 23 Mar 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc