Writing Node.js Addons

Node.js is great for writing your back-end in JavaScript. But what if you need some functionality that is not provided out of the box, or which also can't be accomplished even using modules, but is available in the form of a C/C++ library? Well, awesomely enough, you can write an addon that will allow you to use this library in your JavaScript code. Let's see how.

As you can read in the Node.js documentation, addons are dynamically linked shared objects that can provide glue to C/C++ libraries. This means that you can take pretty much any C/C++ library and create an addon that will allow you to use it in Node.js.

As an example, we will create a wrapper for the standard std::string object.


Preparation

Before we start writing, you have to make sure you've got everything you need to compile the module later. You need node-gyp and all its dependencies. You can install node-gyp using the following command:

As for the dependencies, on Unix systems you will need:

  • Python (2.7, 3.x will not work)
  • make
  • a C++ compiler toolchain (like gpp or g++)

For example, on Ubuntu you can install all of this using this command (Python 2.7 should already be installed):

On Windows you will need:

  • Python (2.7.3, 3.x will not work)
  • Microsoft Visual Studio C++ 2010 (for Windows XP/Vista)
  • Microsoft Visual Studio C++ 2012 for Windows Desktop (Windows 7/8)

The Express version of Visual Studio works fine.


The binding.gyp File

This file is used by node-gyp to generate appropriate build files for your addon. The whole .gyp file documentation can be found on their Wiki page, but for our purposes this simple file will do:

The target_name can be any name you like. The sources array contains all of the source files that the addon uses. In our example, there is addon.cc, which will contain the code that is required to compile our addon and stdstring.cc, which will contain our wrapper class.


The STDStringWrapper Class

We will start by defining our class in the stdstring.h file. The first two lines should be familiar to you if you've ever programmed in C++.

This is a standard include guard. Next, we have to include these two headers:

The first one is for the std::string class and the second include is for all things related to Node and V8.

After that, we can declare our class:

For all classes that we want to include in our addon, we must extend the node::ObjectWrap class.

Now we can start defining private properties of our class:

Apart from the constructor and destructor, we also define a pointer to std::string. This is the core of the technique that can be used to glue C/C++ libraries to Node - we define a private pointer to the C/C++ class and later operate on that pointer in all methods.

Next we declare the constructor static property, which will hold the function that will create our class in V8:

Please refer to the v8::Persistent template documentation for more information.

Now we will also have a New method, that will be assigned to the constructor above, when V8 initializes our class:

Every function for V8 will look like this: it will accept a reference to the v8::Arguments object and return a v8::Handle>v8::Value> - this is how V8 deals with weak-typed JavaScript when we program in strong-typed C++.

After that, we will have two methods that will be inserted in to the prototype of our object:

The toString() method will allow us to get the value of s_ instead of [Object object] when we use it with normal JavaScript strings.

Finally, we will have the initialization method (this will be called by V8 to assign the constructor function) and we can close the include guard:

The exports object is equivalent to the module.exports in JavaScript modules.


The stdstring.cc File, Constructor and Destructor

Now create the stdstring.cc file. First we have to include our header:

And define the constructor property (since it's static):

The constructor for our class will just allocate the s_ property:

And the destructor will delete it, to avoid a memory leak:

Also, you must delete everything you allocate with new, every time there is a chance that an exception will be thrown, so keep that in mind or use shared pointers.


The Init Method

This method will be called by V8 to initialize our class (assign the constructor, put everything we want to use in JavaScript in the exports object):

First we have to create a function template for our New method:

This is kind of like new Function in JavaScript - it allows us to prepare our JavaScript class.

Now we can set this function's name if we want to (if you omit this, your constructor will be anonymous, it would have function someName() {} versus function () {}):

We used v8::String::NewSymbol() which creates a special kind of string used for property names - this saves the engine a little bit of time.

After that, we set how many fields each instance of our class will have:

We have two methods - add() and toString(), so we set this to 2.

Now we can add our methods to the function's prototype:

This seems like a lot of code, but when you look closely, you will see a pattern there: we use tpl->PrototypeTemplate()->Set() to add each of the methods. We also give each of them a name (using v8::String::NewSymbol()) and a FunctionTemplate.

Finally, we can put the constructor in the constructor property of our class and in the exports object:


The New Method

Now we will define the method that will act as a JavaScript Object.prototype.constructor:

First we have to create a scope for it:

After that, we can use the .IsConstructCall() method of the args object to check if the constructor function was called using the new keyword:

If so, let's first convert the argument passed to std::string like this:

... so that we can pass it to the constructor of our wrapper class:

After that, we can use the .Wrap() method of the object we created (which is inherited from node::ObjectWrap) to assign it to the this variable:

Finally, we can return the newly created object:

If the function was not called using new, we will just invoke the constructor as it would be. Next, let's create a constant for the argument count:

Now let's create an array with our argument:

And pass the result of the constructor->NewInstance method to scope.Close, so the object can be used later (scope.Close basically allows you to preserve the handle to an object by moving it to the higher scope - this is how functions work):


The add Method

Now let's create the add method which will allow you to add something to the internal std::string of our object:

First we have to create a scope for our function and convert the argument to std::string like we did earlier:

Now we have to unwrap the object. This the reverse of the wrapping we did earlier - this time we will get the pointer to our object from the this variable:

Then we can access the s_ property and use its .append() method:

Finally, we return the current value of the s_ property (again, using scope.Close):

Since the v8::String::New() method accepts only char pointer as a value, we have to use obj->s_->c_str() to get it.


The toString Method

The last method needed will allow us to convert the object to JavaScript's String:

It's similar to the previous one, we have to create the scope:

Unwrap the object:

And return the s_ property as a v8::String:


Building

The last thing to do before we use our addon, is of course compilation and linking. It will involve only two commands. First:

This will create the appropriate build configuration for your OS and processor (Makefile on UNIX and vcxproj on Windows). To compile and link the library, just call:

If all goes well, you should see something like this in your console:

And there should be a build directory created in your addon's folder.

Testing

Now we can test our addon. Create a test.js file in your addon's folder and require the compiled library (you can omit the .node extension):

Next, create a new instance of our object:

And do something with it, like adding or converting it to a string:

This should result in something like the following in the console, after running it:

Conclusion

I hope that after reading this tutorial you will no longer think that it's difficult to create, build and test out customized C/C++ library based, Node.js addons. Using this technique you can port almost any C/C++ library to Node.js with ease. If you want, you can add more features to the addon we created. There is plenty of methods in std::string for you to practice with.


Useful Links

Check out the following resources for more information on Node.js addon development, V8 and the C event loop library.

Tags:

Comments

Related Articles