Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
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
The npm package block-storage receives a total of 1 weekly downloads. As such, block-storage popularity was classified as not popular.
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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.