I am a beginner. I'd like to push data to JSON array file.
In this case, I want to push this:
{
"name" : "name1",
"pass" : "password1"
},
This is index.js:
var express = require('express');
var fs = require('fs'); // util to read file
var app = express();
app.get('/',function(req,res){
//code here
})
And this is data.json
[
//pushed data here
]