标签:
根据 node-gyp 指示的 Windows 编译环境说明, 简单一句话就是 "Python + VC++ 编译环境".
所有需要的安装文件, 我都下载好放到百度云盘了: nodejs-gyp-windows
文件在: node-gyp-windows/windowsXP
Visual Studio C++ 2010
就OK了, 其他不需要安装文件在: node-gyp-windows/windows7
Visual Studio Express 2012
假设你在使用 node v0.10.29
这里举例安装 microtime
模块:
$ npm install microtime --registry=https://registry.npm.taobao.org --disturl=https://npm.taobao.org/dist
测试安装编译结果:
$ node -e ‘console.log("now is %d ms", require("microtime").now())‘
配置 Windows 下的 nodejs C++ 模块编译环境 安装 node-gyp
标签:
原文地址:http://www.cnblogs.com/meetrice/p/4722357.html