전제 조건: node.js, Python2.7 및 Visual Studio 2013을 설치합니다.
프로세스:
먼저 GYP 프로젝트 생성 도구인 npm install -g node-gyp를 설치합니다.
작업 디렉터리인 test 디렉터리를 만듭니다. 이 디렉터리 아래에 C++ 소스 코드를 저장할 src 디렉터리를 만들고, 바인딩.gyp이라는 새 텍스트 파일을 만듭니다. 내용은 다음과 같습니다. :
{ 'targets':[{ 'target_name':'hello', 'sources':['src/hello.cc'] }] }
다음 내용으로 간단한 hello.cc를 작성합니다.
#include <node.h> using namespace v8; Handle<Value> Hello(const Arguments& args) { HandleScope scope; return scope.Close(String::New("Hello world!")); } void init(Handle<Object> target) { NODE_SET_METHOD(target, "hello", Hello); } NODE_MODULE(hello, init)
그런 다음 node-gyp 구성 명령을 실행합니다
올바르게 실행되면 다음과 같은 메시지가 나타납니다. vs2013 프로젝트 파일이 생성되어 vs2013에서 편집하고 컴파일할 수 있는 디렉터리---빌드입니다.
물론 node-gyp build 명령을 직접 사용하여 컴파일할 수도 있습니다.
테스트 js 프로그램은 다음과 같습니다.
var hello = require('./hello'); console.log(hello.hello());
몇 가지 문제가 발생했으며 다음과 같이 기록됩니다.
1.