All Projects → negezor → Vk Io

negezor / Vk Io

Licence: mit
Modern VK API SDK for Node.js

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to Vk Io

Node Vk Bot Api
🤖 VK bot framework for Node.js, based on Bots Long Poll API and Callback API.
Stars: ✭ 195 (-51.37%)
Mutual labels:  api, vk-api, vk
Vk Api Schema
JSON Schema of VK API
Stars: ✭ 158 (-60.6%)
Mutual labels:  api, vk-api, vk
InTouch
👥 InTouch - is a programming SDK build around vk.com API exposing most of the social platform features including messaging, news feed fetching, communities, and media management.
Stars: ✭ 33 (-91.77%)
Mutual labels:  vk, vk-api
easyvk
This app helps you create an apps with vk api easy!
Stars: ✭ 97 (-75.81%)
Mutual labels:  vk, vk-api
VK-Scraper
Scrapes VK user's photos
Stars: ✭ 42 (-89.53%)
Mutual labels:  vk, vk-api
Huobi python
Python SDK for Huobi Spot API
Stars: ✭ 391 (-2.49%)
Mutual labels:  api, sdk
py-vkontakte
A Python wrapper around the vk.com
Stars: ✭ 17 (-95.76%)
Mutual labels:  vk, vk-api
easyvk-go
Simple way to work with VK API
Stars: ✭ 47 (-88.28%)
Mutual labels:  vk, vk-api
Jcabi Github
Object Oriented Wrapper of Github API
Stars: ✭ 252 (-37.16%)
Mutual labels:  api, sdk
kasthack.osp
Генератор сырых дампов пользователей VK.
Stars: ✭ 15 (-96.26%)
Mutual labels:  vk, vk-api
node-vk-bot
Create and control VK bots easily.
Stars: ✭ 35 (-91.27%)
Mutual labels:  vk, vk-api
vk-mini-app-boilerplate
Стартовый кит для создания сервиса на платформе VK Mini Apps с использованием React + Redux
Stars: ✭ 61 (-84.79%)
Mutual labels:  vk, vk-api
VideoforVk
Video for Vk (or VT) is client for Vk video API.
Stars: ✭ 27 (-93.27%)
Mutual labels:  vk, vk-api
vk-api
VK SDK | VKontakte wrapper for standalone apps
Stars: ✭ 30 (-92.52%)
Mutual labels:  vk, vk-api
vkbottle
Сustomizable asynchronous VK API framework
Stars: ✭ 371 (-7.48%)
Mutual labels:  vk, vk-api
Vk Java Sdk
Java library for working with VK API
Stars: ✭ 254 (-36.66%)
Mutual labels:  api, vk
vk-spammer
Спаммер сообщений для вк
Stars: ✭ 47 (-88.28%)
Mutual labels:  vk, vk-api
vbio
Python модуль для написания скриптов, использующих Bots API для социальной сети Вконтакте (vk.com)
Stars: ✭ 10 (-97.51%)
Mutual labels:  vk, vk-api
Coinapi Sdk
SDKs for CoinAPI
Stars: ✭ 238 (-40.65%)
Mutual labels:  api, sdk
Strapi Sdk Javascript
🔌 Official JavaScript SDK for APIs built with Strapi.
Stars: ✭ 247 (-38.4%)
Mutual labels:  api, sdk

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

Installation

Node.js 12.0.0 or newer is required

Yarn

Recommended

yarn add vk-io

NPM

npm i vk-io

Example usage

import { VK } from 'vk-io';

const vk = new 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);

Community

Useful modules that may be useful to you

If you want to add your module in the list, create a new issue in the repository.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].