Obtendo o tamanho do arquivo sem ler o arquivo inteiro

fs.stat(path, function(err, stat) {
if(err) {
// handle error
}
console
.log(stat.size);
});