Monday 10 April 2017

How do I write the result from res.json to a proper json file using node.js?

This is the code snippet. The query returns in json form but how do I write these values in a JSON file?

app.get('/users',function(req,res){

User.find({},function(err,docs){
    res.json(docs);

    console.error(err)
    })
});



via varun kumar

No comments:

Post a Comment