2.1.5 • Published 8 years ago

zfs-js v2.1.5

Weekly downloads
3
License
ISC
Repository
github
Last release
8 years ago

ZFS

ZFS(Z FileSystem) is a virtual disk implementation for a CS homework. It approximately implements a FAT file system in a single file. This repo is implemented in NodeJS. The API is Unix style.

Example

const zfs = require('zfs-js');

zfs.connect('virtualdisk.disk');

const fd = zfs.open('/test.txt', zfs.ZFILE_FLAG_WRITE);

let buf = Buffer.from([0, 1, 2, 3, 4]);
zfs.write(zfs, buf, 0, 5);

zfs.close(fd);

zfs.disconnect();
2.1.5

8 years ago

2.0.5

8 years ago

2.0.4

8 years ago

2.0.3

8 years ago

2.0.2

8 years ago

2.0.1

8 years ago

2.0.0

8 years ago

1.1.0

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago