Mount a kappa-drive with hyperdrive-fuse

- About
- Install
- Usage
- Contributing
- License
kappa-drive-mount enables you to mount a kappa-drive with hyperdrive-fuse.
TODO
This will mount a kappa-drive for 3 seconds, and then unmount it.
``js
const KappaDrive = require('kappa-drive')
const mount = require('./')
const mountdir = './mnt'
const storage = './drive'
const drive = KappaDrive(storage)
mount(drive, mountdir, (err, unmount) => {
if (err) return console.error(err)
setTimeout(() => {
unmount()
}, 3000)
})
`
js
const mount = require('kappa-drive-mount')
mount(drive, destination, [options,] callback)
`mount a kappa-drive,
drive at path destination. options, if given, will be passed to hyperdrive-fuse.callback will be given arguments (err, unmount). unmount is a function which can be used to unmount the drive. The drive can also be unmounted by sending the 'SIGINT'` event (pressing Ctrl + C).PRs accepted.
Small note: If editing the README, please conform to the standard-readme specification.
TODO