@atcute/car
v1.1.1
Published
read AT Protocol's CAR (content-addressable archive) repositories
Downloads
1,017
Readme
@atcute/car
CAR (content-addressable archvie) repository decoder
// convenient iterator for reading through an AT Protocol CAR repository
for (const { collection, rkey, record } of iterateAtpRepo(buf)) {
// ...
}
// read through a CAR archive
const { roots, iterate } = readCar(buf);
for (const { cid, bytes } of iterate()) {
// ...
}