Node.js — Human-Readable JSON.stringify() With Spaces and Line Breaks
Serializing JavaScript to JSON is useful in various situations. Calling JSON.stringify(data) returns a JSON string of the given data. This JSON string doesn’t include any spaces or line breaks by default. It’s hard to read when writing the serialized JSON to a file. What you can …
Continue Reading