Your library always helps me. Thank you for developing it.
I have a question about Read Streaming.
How to read all keys and values from the tree?
I want to reproduce Read Streaming like the following.
const stream = tree.createReadStream();
stream.on('data', function (data) {
console.log(data.key);
console.log(data.value);
});
Please teach me how to do it.
Thank you for reading my issue.