rticommunity / rticonnextdds-connector

RTI Connector for Connext DDS is a lightweight technology that enables DDS data to be accessed with Javascript (Node.js), Python, and Lua.
Other
56 stars 33 forks source link

Node librtidds #19

Closed Bryan-Turek closed 7 years ago

Bryan-Turek commented 9 years ago

Initial native bindings for librti_dds_connector:

Configure binding.gyp

Generate Your Projects (gyp) is like CMake, it uses a different paradigm to setup the compilation. Documentation on it can be found >here<. The build will need to be modified to your system architecture and file path (this should actually use relative paths).

Installing node-gyp and building

$ npm install node-gyp -g

$ cd node
$ node-gyp configure
$ node-gyp build

Other notes

Bryan-Turek commented 9 years ago

std::string classes should be removed now. and added a fix for binding.gyp. working on replacing assert and adding bindings.async_wait function calls

gianpiero commented 7 years ago

Hello,

Thanks for submitting the pull request. For now, we decided to support the native code through FFI. If we receive any request regarding native support will will point to your fork.

Best