7zbson.js
v1.0.2
Published
Library to convert 7zbson to json
Downloads
9
Readme
7zbson.js
this is a simple implementation of a 7zbson decompress and compress in javascript
Usage
compress is WIP
Node
import { Decompress } from "7zbson.js";
import fs from "fs/promises";
const data = fs.readFile("file.7zbson");
const biteArray = new Uint8Array(data);
const decompress = new Decompress(biteArray);
console.log(decompress);
Web
sample is here