clone 源码到本地
c/c++ 3 步编译安装法, 参考
./configure --debug // 会生成 node/out/Debug 文件make -j4 // -j4 为启用 4 个作业make install
const fs = require('fs')fs.readFile('./node.gyp', {encoding: 'utf-8'}, function (e, content) {console.log(content)})
static void Read(const FunctionCallbackInfo<Value>& args)
增加断点, 此时 Run -> Debug 'node' 即可进入调试界面