Skip to content Skip to sidebar Skip to footer

How Can I Save Objects To Files In Node.js?

I'm running a Node server and I was wondering - how can I serialize objects and write them to a file?

Solution 1:

You can use

var str = JSON.stringify(object)

to serialize your objects to a JSON string and

var obj = JSON.parse(string)

To read it back as an object. The string can be written to file. So, for example an object like this:

var p = newFoo();
p.Bar = "Terry"var s = JSON.stringify(p)
// write s to file, get => { "Bar" : "Terry" }// read s from file and turn back into an object:var p = JSON.parse(s);

Writing and reading to/from files is covered here: http://nodejs.org/docs/v0.4.11/api/fs.html#fs.write

Post a Comment for "How Can I Save Objects To Files In Node.js?"