
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
devebot-api
Advanced tools
The devebot application programming interface.
Installs this library and you'll have access to the devebot
service from your program.
npm install --save devebot-api
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');
});
Uses apiClient.loadDefinition(callback)
to get the commands defintion from devebot
service.
apiClient.loadDefinition(function(err, definition) {
// do something with commands definition
});
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
});
FAQs
Devebot API
We found that devebot-api demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
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.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.