Express生成器定义具有以下内容的onError()
event handler:
if (error.syscall !== 'listen') throw error;
syscall
被描述为“ a string describing the syscall that failed”,其中有many possible types of failures(在Linux上,不确定在Windows上会发生什么)。
那么,为什么只处理“听”错误-节点应用肯定会由于其他原因而失败?这是Express Generator模板的一部分,我敢肯定有充分的理由。