nomad.hyperdrive has been removed. Every drive in Nomad is now an
Autobase, and all reading, writing, and drive management
goes through the single nomad.fs API.
Migration is a near drop-in rename — the method names are the same:
// before
nomad.hyperdrive.drive(url).readFile('/index.json')
// after
nomad.fs.drive(url).readFile('/index.json')
nomad.hyperdrive.X(...) → nomad.fs.X(...) for drive, readFile, writeFile, readdir, stat,
query, watch, createDrive, forkDrive, configure, and the rest.
See nomad.fs.