Security News
New Python Packaging Proposal Aims to Solve Phantom Dependency Problem with SBOMs
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
block-storage
Advanced tools
This module connects to the Digital Ocean's API and allow you to operate over volumes.
Block Storage is currently in Beta. Some things may not be as you spect. See documentation before using this module.
[![NPM](https://nodei.co/npm/block-storage.png)](https://nodei.co/npm/block-storage/)
To download the Block Storage API Client that I've made simply download it via NPM. NPM is always going to have the latest stable version of it. Be free to add any flag after the command such as --save
or --save-dev
$ npm install block-storage
To use the module you have to give it a token. This token allows you to use the entire Digital Ocean API. Click here to generate a Digital Ocean token using your account
const Volumes = require('block-storage')
const volumes = new Volumes({
token: '0X0X0X0X0X0X0X0X0X'
})
volumes
means the variable that has the client to connect to the Digital Ocean Volumes API correctly configured. See authentication again to see more about that variable.
Brings a single volume using its id.
volumes.get(volumeId, (err, volume) => {
if (err) console.log(err)
console.log(volume)
})
Brings a list of all volumes on your Digital Ocean's account.
volumes.list( (err, volumes) => {
if (err) console.log(err)
console.log(volumes)
})
Creates a volume.
volumes.create({
"size_gigabytes": 10,
"name": "example",
"description": "An awesome Block Storage unit",
"region": "nyc1"
}, (err, volume) => {
if (err) console.log(err)
console.log(volume)
})
Retrieves all actions that have been executed on a volume.
volumes.actions(volumeId, (err, actions) => {
if (err) console.log(err)
console.log(actions)
})
Attaches a volume into a droplet.
volumes.attach(volumeId, dropletId, (err, res) => {
if (err) console.log(err)
console.log(res)
})
Detaches a volume out of a droplet.
volumes.detach(volumeId, dropletId, (err, res) => {
if (err) console.log(err)
console.log(res)
})
Deletes a single volume.
volumes.delete(volumeId)
Resizes a single volume.
volumes.resize(volumeId, gigabytes, (err, obj) => {
if (err) console.log(err)
console.log(obj)
})
volumes.get(volumeId, (err, volume) => {
if (err) console.log(err)
console.log(volume)
})
async
functions(ES7/ES2016)
async function getVolume() {
try {
let volume = await volumes.get(volumeId)
console.log(volume)
}
catch (e) {
console.log(e)
}
}
Copyright (c) 2016 - Miguel Ruiz
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
A simple way to connect to Digital Ocean's Volumes API
We found that block-storage 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.
Security News
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
Security News
Socket CEO Feross Aboukhadijeh discusses open source security challenges, including zero-day attacks and supply chain risks, on the Cyber Security Council podcast.
Security News
Research
Socket researchers uncover how threat actors weaponize Out-of-Band Application Security Testing (OAST) techniques across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.