
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
centralized-multidrive
Advanced tools
Manage multiple hyperdrives in a central location. Stores all hyperdrive
databases under ~/.level.
const multidrive = require('centralized-multidrive')
const discovery = require('hyperdiscovery')
const drives = multidrive('my-cool-archive', function (err) {
if (err) console.error(err)
})
drives.create('cute-cats', (err, drive) => {
if (err) return console.error(err)
// drive === [HyperDrive]
drives.list((err, drives) => {
if (err) console.error(err)
// drives === { 'cute-cats': [HyperDrive] }
Object.keys(drives).forEach((key) => {
const drive = drives[key]
const archive = drive.createArchive()
discovery(archive)
})
})
})
Create a new centralized-multidrive instance
List all drives in the centralized-multidrive. drives is a key-value object where keys
are names, and values are hyperdrive instances
Create a new named hyperdrive
Delete a named hyperdrive
$ npm install centralized-multidrive
FAQs
Manage multiple hyperdrives in a central location
We found that centralized-multidrive 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.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.