import fs from 'fs';
注意不必要的{} - fs是fs节点模块的默认导出,应该以后一种方式导入
有关默认&的更好解释命名导出请参阅this SO discussion

  •