I want to include json file on javascript in node application. I have include using "require();". But i have face error: 
"Uncaught ReferenceError: require is not defined".
I want to include json file on javascript in node application. I have include using "require();". But i have face error: 
"Uncaught ReferenceError: require is not defined".
 
    
     
    
    In client side Javascript require won't work. Instead of this use jQuery.getJson()
$.getJSON( "json_file.json", function( data ) {
   //data variable having your json data 
});
