All Projects → johnbwoodruff → Digitalocean Js

johnbwoodruff / Digitalocean Js

Licence: mit
JavaScript library for the DigitalOcean API

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to Digitalocean Js

Doctl
The official command line interface for the DigitalOcean API.
Stars: ✭ 2,856 (+3073.33%)
Mutual labels:  digitalocean, hacktoberfest
Droplet kit
DropletKit is the official DigitalOcean API client for Ruby.
Stars: ✭ 482 (+435.56%)
Mutual labels:  digitalocean, hacktoberfest
Terraform Provider Digitalocean
Terraform DigitalOcean provider
Stars: ✭ 296 (+228.89%)
Mutual labels:  digitalocean, hacktoberfest
Hacktoberfest
This hacktoberfest project exists to help you submit your first Pull Request and welcome you to the world of open source!
Stars: ✭ 216 (+140%)
Mutual labels:  digitalocean, hacktoberfest
Hacktoberfest Simple Practice Programmes
A beginner-friendly open source repository to create your pull request.
Stars: ✭ 42 (-53.33%)
Mutual labels:  digitalocean, hacktoberfest
Action Doctl
GitHub Actions for DigitalOcean - doctl
Stars: ✭ 219 (+143.33%)
Mutual labels:  digitalocean, hacktoberfest
Digitalocean Cloud Controller Manager
Kubernetes cloud-controller-manager for DigitalOcean (beta)
Stars: ✭ 418 (+364.44%)
Mutual labels:  digitalocean, hacktoberfest
Hacktoberfest2018
A repository for HacktoberFest 2018.
Stars: ✭ 139 (+54.44%)
Mutual labels:  digitalocean, hacktoberfest
Innovative Hacktober
Make a pull request. Let's hack the ocktober in an innovative way.
Stars: ✭ 34 (-62.22%)
Mutual labels:  digitalocean, hacktoberfest
Hacktoberfest 2020
Welcome to Open-source! Simply add your details to contributors | Repo for Hacktoberfest 2020 ✅
Stars: ✭ 621 (+590%)
Mutual labels:  digitalocean, hacktoberfest
Programmers Community
This repository contains various solution of a problem in Ruby, C, C++, Python and Java.
Stars: ✭ 189 (+110%)
Mutual labels:  digitalocean, hacktoberfest
Godo
DigitalOcean Go API client
Stars: ✭ 1,097 (+1118.89%)
Mutual labels:  digitalocean, hacktoberfest
Hacktoberfest 2k18 Katas
Game has ended :: Little challenges to up your Hacktoberfest game!
Stars: ✭ 160 (+77.78%)
Mutual labels:  digitalocean, hacktoberfest
Awesome Digitalocean
A curated list of amazingly awesome DigitalOcean resources inspired by Awesome Sysadmin
Stars: ✭ 236 (+162.22%)
Mutual labels:  digitalocean, hacktoberfest
Nginxconfig.io
⚙️ NGINX config generator on steroids 💉
Stars: ✭ 14,983 (+16547.78%)
Mutual labels:  digitalocean, hacktoberfest
Gitstart
Make a Pull Request
Stars: ✭ 415 (+361.11%)
Mutual labels:  digitalocean, hacktoberfest
Awesome Travel
Do you want to build a travel app?
Stars: ✭ 133 (+47.78%)
Mutual labels:  digitalocean, hacktoberfest
Marketplace Partners
Image validation, automation, and other tools for DigitalOcean Marketplace partners and Custom Image users
Stars: ✭ 139 (+54.44%)
Mutual labels:  digitalocean, hacktoberfest
Do Agent
Collects system metrics from DigitalOcean Droplets
Stars: ✭ 552 (+513.33%)
Mutual labels:  digitalocean, hacktoberfest
Dns Tool
A set of browser-based DNS tools for DigitalOcean Community.
Stars: ✭ 50 (-44.44%)
Mutual labels:  digitalocean, hacktoberfest

DigitalOcean JS

Build Status npm npm npm

JavaScript library for the DigitalOcean API. For use in Node or the browser.

Goals

This library was built with a few goals in mind:

  • Be able to use in a Node or Browser environment with no difference in usage.
  • Use Promises instead of callbacks so clients can make use of async/await.
  • Be built in TypeScript so consumers of the library can benefit from excellent intellisense with the TypeScript definitions.
  • Provide solid documentation including examples for usage.

Usage

To use the library, install from the npm repository.

$ npm install --save digitalocean-js
# Alternatively install with yarn
$ yarn add digitalocean-js

Simply import the client and initialize it with your API token:

import { DigitalOcean } from 'digitalocean-js';

const client = new DigitalOcean('my-api-token');

To see all the services available, check out the documentation.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].