如何设置快速静态json文件的分页?

我正在服务一个巨大的静态JSON文件,使用下面的expression式,这是由一个angular度前端消耗。 目前大约需要5分钟才能在浏览器中看到数据。 是否有可能将这个文件分块(它有一个ID键)模拟分页?

performance

... ReportRouter.route('/list') .get(function(req, res){ //res.setHeader("Content-type", "application/json"); fs.readFile('./file.json','utf8',function(err,data){ if(err) throw err; res.json(JSON.parse(data)); }); }); ...