How can I use a C++ library from node.js? How can I use a C++ library from node.js? javascript javascript

How can I use a C++ library from node.js?


There is a fresh answer to that question now. SWIG, as of version 3.0 seems to provide javascript interface generators for Node.js, Webkit and v8.

I've been using SWIG extensively for Java and Python for a while, and once you understand how SWIG works, there is almost no effort(compared to ffi or the equivalent in the target language) needed for interfacing C++ code to the languages that SWIG supports.

As a small example, say you have a library with the header myclass.h:

#include<iostream>class MyClass {        int myNumber;public:        MyClass(int number): myNumber(number){}        void sayHello() {                std::cout << "Hello, my number is:"                 << myNumber <<std::endl;        }};

In order to use this class in node, you simply write the following SWIG interface file (mylib.i):

%module "mylib"%{#include "myclass.h"%}%include "myclass.h"

Create the binding file binding.gyp:

{  "targets": [    {      "target_name": "mylib",      "sources": [ "mylib_wrap.cxx" ]    }  ]}

Run the following commands:

swig -c++ -javascript -node mylib.inode-gyp build

Now, running node from the same folder, you can do:

> var mylib = require("./build/Release/mylib")> var c = new mylib.MyClass(5)> c.sayHello()Hello, my number is:5

Even though we needed to write 2 interface files for such a small example, note how we didn't have to mention the MyClass constructor nor the sayHello method anywhere, SWIG discovers these things, and automatically generates natural interfaces.


Look at node-ffi.

node-ffi is a Node.js addon for loading and calling dynamic libraries using pure JavaScript. It can be used to create bindings to native libraries without writing any C++ code.


You can use a node.js extension to provide bindings for your C++ code. Here is one tutorial that covers that:

http://syskall.com/how-to-write-your-own-native-nodejs-extension