aşağıdaki kod ile terminalden yükleme durumunu görebiliyorum canlı olarak express'te nasıl görüntüleyebilirim ?
function showProgress(received,total){
var percentage = (received * 100) / total;
var percentage_ = percentage.toString().split(".");
process.stdout.write(percentage_[0] + "% | İnen: " + bytesToSize(received) + " Toplam: " + bytesToSize(total) + "\r");
}