function resJSON(req, res, filePath) {
  const data = fs.readFileSync(filePath, 'utf-8');
  const json = parseJson(data);
  res.set('Content-Type', 'application/json;charset=utf-8');
  return res.end(json);
}