const fs = require('fs') const nbt = require('../nbt') fs.readFile('bigtest.nbt.gz', function (error, data) { if (error) { throw error } nbt.parse(data, function (error, result) { console.log(error) console.log(result.value.stringTest) console.log(result.value['nested compound test']) console.log(nbt.simplify(result)['nested compound test']) }) })