Popularity
2.8
Growing
Activity
0.0
Stable
12
3
3
Monthly Downloads: 2
Programming language: Elixir
License: MIT License
Tags:
Third Party APIs
digitalocean alternatives and similar packages
Based on the "Third Party APIs" category.
Alternatively, view digitalocean alternatives based on common mentions on social networks and blogs.
-
google-cloud
Elixir client libraries for accessing Google APIs. -
gringotts
A complete payment library for Elixir and Phoenix Framework -
MongoosePush
MongoosePush is a simple Elixir RESTful service allowing to send push notification via FCM and/or APNS. -
sendgrid
Create and send composable emails with Elixir and SendGrid. -
mailchimp
A basic Elixir wrapper for version 3 of the MailChimp API -
diplomat
Elixir library for interacting with Google's Cloud Datastore -
sparkpost
SparkPost client library for Elixir https://developers.sparkpost.com -
elixtagram
:camera: Instagram API client for the Elixir language (elixir-lang) -
google_sheets
Elixir library for fetching Google Spreadsheet data in CSV format -
pay_pal
:money_with_wings: PayPal REST API client for the Elixir language (elixir-lang) -
amazon_product_advertising_client
An Amazon Product Advertising API client for Elixir -
cashier
Cashier is an Elixir library that aims to be an easy to use payment gateway, whilst offering the fault tolerance and scalability benefits of being built on top of Erlang/OTP -
elixir_ipfs_api
The Elixir library that is used to communicate with the IPFS REST endpoint. -
dogstatsd
An Elixir client for DogStatsd https://www.datadoghq.com/
TestGPT | Generating meaningful tests for busy devs
Get non-trivial tests (and trivial, too!) suggested right inside your IDE, so you can code smart, create more value, and stay confident when you push.
Promo
codium.ai
Do you think we are missing an alternative of digitalocean or a related project?
README
DigitalOcean

A (WIP) Elixir wrapper for the Digital Ocean API v2. (View Docs)
Installation
- Add
digitalocean
to your list of dependencies inmix.exs
:
def deps do
[{:digitalocean, "~> 0.1.1"}]
end
- Ensure
digitalocean
is started before your application:
def application do
[applications: [:digitalocean]]
end
- Configure your
digitalocean
application settings:
config :digitalocean, token: "YOUR_API_TOKEN"
To Do
- [x] The Droplet module.
- [x] The Droplet Action module.
- [x] The Floating IP module.
- [x] The Floating IP Action module.
- [x] The Image module.
- [x] The Image Action module.
- [x] The Tag module.
- [ ] Add
@doc
-based tests - [ ] Add all method documentation