我可以检测文件/文件夹并将其写入磁盘,如下所示:
$ istanbul instrument public --output public-coverage --embed-source true
但是我想知道是否有一种方法可以即时检测文件并将它们提供给浏览器,而无需将检测文件写入磁盘。像这样的东西:
app.use(function(req,res,next){
const file = req.path; // whatever
const k = cp.spawn('istanbul', ['instrument']);
fs.createReadStream(file).pipe(k.stdin).pipe(res);
});
有谁知道这是否可能以及如何?