Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
jm-dropletapi
Advanced tools
(C) Oliwer Helsén (oliwer.helsen@live.com) 2015
A wrapper for DigitalOceans API v2
See Version History for changes
npm install dropletapi
npm install dropletapi --save
-- DROPLETS
-- Actions
-- Domains
-- Account
Create a new Droplet
var DIGITALOCEAN = require('dropletapi').Droplets;
var digitalocean = new DIGITALOCEAN('Your API-TOKEN');
var myNewDropletData = {
"name": "example.com",
"region": "nyc3",
"size": "512mb",
"image": "ubuntu-14-04-x64",
"ssh_keys": null,
"backups": false,
"ipv6": true,
"user_data": null,
"private_networking": null
}
digitalocean.createDroplet(myNewDropletData, function (error, result) {
if (error) {
console.log(error);
}
else {
console.log(result);
}
});
Retrieve an existing Droplet by id
var DIGITALOCEAN = require('dropletapi').Droplets;
var digitalocean = new DIGITALOCEAN('Your API-TOKEN');
digitalocean.getDropletById(PUT THE DROPLETID HERE, function (error, result) {
if (error) {
console.log(error);
}
else {
console.log(result);
}
});
List all Droplets in your account
var DIGITALOCEAN = require('dropletapi').Droplets;
var digitalocean = new DIGITALOCEAN('Your API-TOKEN');
digitalocean.listDroplets(function (error, result) {
if (error) {
console.log(error);
}
else {
console.log(result);
}
});
Delete a Droplet by id
var DIGITALOCEAN = require('dropletapi').Droplets;
var digitalocean = new DIGITALOCEAN('Your API-TOKEN');
digitalocean.deleteDroplet(PUT THE DROPLETID HERE, function (error, result) {
if (error) {
console.log(error);
}
else {
console.log(result);
}
});
Retrieve a list of all kernels available to a Dropet
var DIGITALOCEAN = require('dropletapi').Droplets;
var digitalocean = new DIGITALOCEAN('Your API-TOKEN');
digitalocean.availableKernelsForDroplet(PUT THE DROPLETID HERE, function (error, result) {
if (error) {
console.log(error);
}
else {
console.log(result);
}
});
Retrieve the snapshots that have been created from a Droplet
var DIGITALOCEAN = require('dropletapi').Droplets;
var digitalocean = new DIGITALOCEAN('Your API-TOKEN');
digitalocean.getSnapshotsForDroplet(PUT THE DROPLETID HERE, function (error, result) {
if (error) {
console.log(error);
}
else {
console.log(result);
}
});
Retrieve any backups associated with a Droplet
var DIGITALOCEAN = require('dropletapi').Droplets;
var digitalocean = new DIGITALOCEAN('Your API-TOKEN');
digitalocean.getBackupsForDroplet(PUT THE DROPLETID HERE, function (error, result) {
if (error) {
console.log(error);
}
else {
console.log(result);
}
});
Retrieve all actions that have been executed on a Droplet
var DIGITALOCEAN = require('dropletapi').Droplets;
var digitalocean = new DIGITALOCEAN('Your API-TOKEN');
digitalocean.getActionsForDroplet(PUT THE DROPLETID HERE, function (error, result) {
if (error) {
console.log(error);
}
else {
console.log(result);
}
});
Retrieve a list of droplets that are scheduled to be upgraded
var DIGITALOCEAN = require('dropletapi').Droplets;
var digitalocean = new DIGITALOCEAN('Your API-TOKEN');
digitalocean.listDropletUpgrades(function (error, result) {
if (error) {
console.log(error);
}
else {
console.log(result);
}
});
List all of the actions that have been executed on the current account
var DIGITALOCEAN = require('dropletapi').Actions;
var digitalocean = new DIGITALOCEAN('Your API-TOKEN');
digitalocean.listAllActions({page: 1, per_page:1},function (error, result) {
if (error) {
console.log(error);
}
else {
console.log(result);
}
});
List all of the actions that have been executed on the current account
var DIGITALOCEAN = require('dropletapi').Actions;
var digitalocean = new DIGITALOCEAN('Your API-TOKEN');
digitalocean.getActionById(YOUR ACTIONS ID, function (error, result) {
if (error) {
console.log(error);
}
else {
console.log(result);
}
});
List all of the domains in your account
var DIGITALOCEAN = require('dropletapi').Domains;
var digitalocean = new DIGITALOCEAN('Your API-TOKEN');
digitalocean.listDomains(function (error, result) {
if (error) {
console.log(error);
}
else {
console.log(result);
}
});
Create a new domain for your Droplet
var DIGITALOCEAN = require('dropletapi').Domains;
var digitalocean = new DIGITALOCEAN('Your API-TOKEN');
var data = {
"name": "digitaloceanisthebombdiggity.com",
"ip_address": "1.2.3.4"
};
digitalocean.createDomain(data, function (error, result) {
if (error) {
console.log(error);
}
else {
console.log(result);
}
});
Create a new domain for your Droplet
var DIGITALOCEAN = require('dropletapi').Domains;
var digitalocean = new DIGITALOCEAN('Your API-TOKEN');
var domainName = 'digitaloceanisthebombdiggity.com';
digitalocean.getDomainByName(domainName, function (error, result) {
if (error) {
console.log(error);
}
else {
console.log(result);
}
});
Create a new domain for your Droplet
var DIGITALOCEAN = require('dropletapi').Domains;
var digitalocean = new DIGITALOCEAN('Your API-TOKEN');
var domainName = 'digitaloceanisthebombdiggity.com';
digitalocean.deleteDomain(domainName, function (error, result) {
if (error) {
console.log(error);
}
else {
console.log(result);
}
});
Get user information
var DIGITALOCEAN = require('dropletapi').Domains;
var digitalocean = new DIGITALOCEAN('Your API-TOKEN');
digitalocean.getUserInfo(function (error, result) {
if (error) {
console.log(error);
}
else {
console.log(result);
}
});
FAQs
Wrapper for the DigitalOcean API V2
The npm package jm-dropletapi receives a total of 2 weekly downloads. As such, jm-dropletapi popularity was classified as not popular.
We found that jm-dropletapi demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.