I would like to know if anyone has an idea of how to convert a JSON into CSV in node.js
For example, this JSON:
var myObj = {
"Processes": [{
"id": "p1",
"burstTime": "3",
"arribo": "0"
}, {
"id": "p2",
"burstTime": "4",
"arribo": "1"
}, {
"id": "p3",
"burstTime": "5",
"arribo": "2"
}]
}
I have read that node.js has several libraries but I still can not use them properly.
HELP !!