Nodejs支持VC++Build

Nodejs(v0.5.5)开始支持VC++Build了

Building with VC++

There is increasing support for native compilation on Windows using VC++ (Visual C++). This includes Visual C++ Express which is available for free from Microsoft. First download the node source. Then, from the Visual Studio Command Prompt, type

cd c:\path\to\source
vcbuild.bat debug

for the debug version or

cd c:\path\to\source
vcbuild.bat release

for the release version to build node.

可能遇到的报错提示,如 'Error running GYP'

解决办法:检查你本机安装python的版本,(安装python2.x版本,python3.x版本将出现错误)

你可能感兴趣的:(nodejs,Build,VC)