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

lp-vk

Package Overview
Dependencies
Maintainers
1
Versions
67
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lp-vk

Simple vkontakte API longpoll/callback library

  • 0.10.1
  • npm
  • Socket score

Version published
Weekly downloads
5
increased by25%
Maintainers
1
Weekly downloads
 
Created
Source

A library for Vkontakte API

Getting started

npm install lp-vk

Then, use require:

const LP = require('lp-vk');
const lp = new LP({ token: '' }); // options

If you need, you can put group_id in options.

Also, callback is possible

const lp = new LP({ token: '', callback: { confirmation: '' } | true }); //if no code, will get own from API

Usage

All events are from vk API

lp.on('message_new', handler); //function with only argument

Handler's argument is event, or if message, it is message's object

lp.start(options);

Will start polling and get group_id if needed.

Messages
message.send(text, params);
message.is_chat //bool
message.chat_id //id
message.sendPhotos(raw, params); //filenames
message.sendPhotosBuffer(raw, params); //buffers
message.sendStoryBuffer(rew, params); //buffers
message.sendDocuments(raw, params); //filenames
message.sendAudioMessage(raw, params); //filenames

message.sendSticker(id, params);
message.replySticker(id, params);
message.reply(text, params);
message.forward(peer_id, params|text);
message.edit(conversation_message_id, params|text);
message.delete(id, params);

message.removeChatUser(member_id, params|chat_id);
message.getConversation(peer_ids, params);

message.sendMessageEventAnswer(ans); //see vk api docs

Methods

lp.api.method.do(params);

Execute mode is on

Class ApiError

error.msg = 'Param is invalid or empty';
error.code = 100;
error.params = {} | null;
error.toString() = 'Error 100 - Param is empty or invalid';

Keywords

FAQs

Package last updated on 16 May 2022

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