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

digital-ocean-promise

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

digital-ocean-promise

An API system using promises to interact with Digital Ocean

  • 1.0.2-b
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Digital Ocean Promise

A promise based approach to Digital Ocean's API

For information on request responses, bodies and so on please refer to the official documentation on Digital Ocean's website Digital Ocean API V2

Get Started

Initialize

const API = require('digital-ocean-promise')
 
new API( 
    'API_PREFIX', // Prefix (https://api.digitalocean.com/v2)
    'API_KEY' // API Key
)

Example Usage

API.droplets.read()
    .then(data => {
        console.log(data)
    }) 
    .catch(error => {  
        console.log(error)
    })

Account

Returns account data

API.account.read()

Droplets

Creates a new droplet with object

API.droplets.create(data)

Returns list of droplets

API.droplets.read()

Returns specific droplet by ID

API.droplets.read(id)

Deletes a droplet by ID

API.droplets.delete(id)

Changes power status

API.droplets.toggle(id, 'power', 'on') 
API.droplets.toggle(id, 'power', 'off') 

Keywords

FAQs

Package last updated on 05 May 2018

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