vk-io-stable
Version:
Модуль для создания бота VK
39 lines (28 loc) • 607 B
Markdown
VK-IO-STABLE - This is a powerful [Node.js](https://nodejs.org) module that allows you to easily interact with the VK API 🚀
> **[Node.js](https://nodejs.org/) 8.0.0 or newer is required**
Recommended
```
yarn add vk-io-stable
```
```
npm i vk-io-stable
```
```js
import VK from 'vk-io-stable';
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);
```