VK-IO - This is a powerful Node.js module that allows you to easily interact with the VK API š
š Documentation | š¤ Examples |
---|
100%
coverage of the VK APIvk.api.users.get({ ... });
Node.js 12.20.0 or newer is required
npm
(recommended)
npm i vk-io
Yarn
yarn add vk-io
pnpm
pnpm add vk-io
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);
If you want to add your module in the list, create a new issue in the repository.