You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running this project, level seems to store text ('beep' and 'boop') as some kind of buffer. Is it possible to get Webpacked level to store data as plain old Strings or JSON objects? (I have experienced this behavior in other projects as well)
The text was updated successfully, but these errors were encountered:
Fair enough- I can see that that makes sorting better for dbs with dynamically typed keys.
If a webpacked level db uses String keys and Object values, what is the best way to examine the contents of that db in a web browser? Is it possible to do so?
Inspecting it with javascript is the only way, because the browser doesn't know what the binary data represents, same as with leveldb in node. I suppose you could write a devtools extension 🙃
When running this project,
level
seems to store text ('beep' and 'boop') as some kind of buffer. Is it possible to get Webpackedlevel
to store data as plain old Strings or JSON objects? (I have experienced this behavior in other projects as well)The text was updated successfully, but these errors were encountered: