方法一:只重build修改過的檔案
node-gyp rebuild
方法二:在你的系統上安裝 ccache 作為 C/C++ 編譯器的快取工具
Ubuntu安裝:
sudo apt-get install ccache
macOS安裝:
brew install ccache
再使用 node-gyp rebuild 和 ccache 重新建置 C++ 插件:
CCACHE_BASEDIR=path/to/project CCACHE_CPP2=yes node-gyp rebuild