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

devebot-api

Package Overview
Dependencies
Maintainers
2
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

devebot-api

Devebot API

  • 0.4.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
Maintainers
2
Weekly downloads
 
Created
Source

devebot-api

The devebot application programming interface.

Install

Installs this library and you'll have access to the devebot service from your program.

npm install --save devebot-api

Usage

Creates object and defines events

var ApiClient = require('devebot-api');
var logger = require('winston');

var apiClient = new ApiClient({
  host: '<your-address-default-127.0.0.1>',
  port: '<your-port-default-17779>',
  path: '<default-devebot>',
  logger: logger // option
});

apiClient.on('started', function() {
  logger.info(' - The command is started');
});

apiClient.on('completed', function(data) {
  logger.info(' - The command is commpleted successful, result: %s',
      JSON.stringify(data, null, 2));
});

apiClient.on('failed', function(data) {
  logger.info(' - The command is failed, output: %s',
      JSON.stringify(data, null, 2));
});

apiClient.on('done', function() {
  logger.info(' - The command is finished');
});

apiClient.on('noop', function() {
  logger.info(' - The command not found');
});

Gets commands definition

Uses apiClient.loadDefinition(callback) to get the commands defintion from devebot service.

apiClient.loadDefinition(function(err, definition) {
  // do something with commands definition
});

Executes a command

Uses apiClient.execCommand(cmd_definition, callback) to execute a command that has been defined in devebot service.

Example:

var cmd_def = {
  name: '<name_of_command>',
  options: {
    option_1: '<value_1>',
    option_2: '<value_2>'
  }
};

var callback = function(err, result) {
  // do something with err & result
};

apiClient.execCommand(cmd_def, callback);

or inline form:

apiClient.execCommand({
  name: '<name_of_command>',
  options: {
    option_1: '<value_1>',
    option_2: '<value_2>'
  }
}, function(err, result) {
  // do something with err & result
});

Keywords

FAQs

Package last updated on 10 Feb 2023

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