We always want to comment in json but result in invalid json format in JSON.parse. However with remove-json-comments, you can do it.
$ npm install remove-json-comments --save
var removeJsonComments = require('remove-json-comments');
var string = '/* haha */{"hello": "world"}';
console.log(JSON.parse(removeJsonComments(string));