npm install --save node-vk-bot
If you are cloning this repository, remember to run npm install
to install dependencies.
const { Bot, Keyboard } = require('node-vk-bot')
const bot = new Bot({
token: 'YOUR TOKEN',
group_id: 123456
}).start()
bot.get(/Hi|Hello|Hey/i, (message, exec, reply) => {
const keyboard = new Keyboard().addButton('Hi!')
const options = { forward_messages: message.id, keyboard }
reply('Hello!', options)
})
More examples (how to use webhooks, upload pictures, ...)
if you want your bot to be in this list, just make a pull request
In the example above you can see a super simple VK Bot. This bot will answer our greetings, that's all.
Let's explain the code, it's pretty simple.
bot.start()
the bot starts polling updates from the server.The class used to create new bots, it takes a single argument, an options
object.
new Bot({
token: 'TOKEN',
group_id: 123456
api: {
v: 5.80, // >= 5.80
lang: 'ru'
}
})
Parameter | Type | Required |
---|---|---|
token | String | Yes |
group_id | Number | Yes |
api | Object | No |
controllers | String[] | No |
api
is object with API settings: version and language. (both strings) (Read more)
Starts polling updates from API.
Emits an update
event after getting updates with the response from server.
Update examples.
Listens on specific message matching the RegExp pattern.
bot.get(/Hello/i, (msg, exec, reply) => {
console.log(msg)
reply('Hi!')
})
The argument passed to callback is a Message
object, result of pattern.exec(text)
and a reply
function.
reply
takes text as first argument and optional message.send parameters as second.
Listens for specific payload
(used for keyboards)
This is a syntactic sugar for the payload
event
bot.getPayload('{"command": "start"}', (msg, reply) => console.log(msg))
Arguments: json string and listener
Sends message.
bot.send('text', peer_id, params)
Upload a photo.
The only parameter is an absolute path to picture or a stream object. Returns a Promise that resolves with a photo object
bot.uploadPhoto('~/kittens.png').then(photo => {
console.log(photo)
})
let stream = fs.createReadStream('./kittens.png')
bot.uploadPhoto(stream).then(photo => {
console.log(photo)
})
Access VK API.
bot.api('users.get', { user_ids: 1 })
.then(res => console.log(res[0].first_name)) // Pavel
When using execute
method, this function returns full response object. (Because there may be errors and responses in same object).
Process an update from Callback API.
Example of usage may be found in examples
folder
Stops the bot from listening on updates.
bot.stop()
The update event is emitted whenever there is a response from LongPoll.
bot.on('update', update => {
if (update.from_id === 1) {
console.log('Got a message from Pavel Durov!');
}
})
The voice event is emitted whenever there is a new voice message. (emits Message
object)
The sticker event is emitted whenever there is a new incoming sticker. (emits Message
object)
Emitted when bot recieves a message with json payload (used in keyboards)
Emits Message
object and reply function
The poll-error event is emitted whenever there is an error occurred in LongPoll.
bot.on('poll-error', error => {
console.error('error occurred on a working with the Long Poll server ' +
`(${util.inspect(error)})`)
})
This event is emitted whenever there's no .get()
listeners matching
bot.on('command-notfound', msg => {
bot.send('What?', msg.peer_id)
})
The class used to create keyboards in messages
bot.get(/Hi|Hello|Hey/i, message => {
const keyboard = new Keyboard(true)
.addButton('Red', KeyboardColor.NEGATIVE)
.addButton('Green', KeyboardColor.POSITIVE)
.addRow()
.addButton('Blue', KeyboardColor.PRIMARY)
.addButton('White')
bot.send('Hello!', message.peer_id, keyboard)
});
The only argument - one_time
If true
, the keyboard hides after user replies
new Keyboard(true)
Add a button to the last row.
Parameters:
Maximum amount of buttons in one row is 4
Add a new row to the keyboard.
Maximum amount of rows is 10
Get the keyboard as a JSON string
addButton('label', KeyboardColor.NEGATIVE)
Available colors:
Message
Object interface Message {
id: number,
peer_id: number,
date: number,
text: string,
from_id: number,
attachments: any,
important: boolean,
conversation_message_id: number,
fwd_messages: any
}
// Reference: https://vk.com/dev/objects/message