How to save an ArrayBuffer in json file? I use electron-config for this, but in config.json I found \"{}\". I try convert (code) ArrayBuffer to string, but then I can\'t con
For saving to disk, you should be able to use the normal node APIs for writing something to disk. For example:
require('fs').writeFileSync('/path/to/saved/file', Buffer.from(myArrayBuffer));