笔记
面试
简历
Appearance
Node.js 的事件循环分为 timers、poll、check 等阶段,理解它才能写好异步代码。
timers
poll
check
CommonJS 使用 require / module.exports,ESM 使用 import / export。
CommonJS
require
module.exports
ESM
import
export
Readable、Writable、Transform 是处理大文件的核心抽象。
Readable
Writable
Transform