nbind
nbind copied to clipboard
:sparkles: Magical headers that make your C++ library accessible from JavaScript :rocket:
Hi, I'm posting this issue as an indirect user of the product of your library, so sorry for any misunderstandings about how things work on my end. Long story short,...
This code ``` class SomeClass { public: std::string SomeString () { return "Hello"; } }; #include "nbind/nbind.h" NBIND_CLASS(SomeClass) { method(SomeString); } ``` and then invoking the method from JS fails...
Is this project abandoned? The last commit was in 2019, last release in 2018. The reason I'm asking is if we decide to use this in our product, and find...
we should add wasm build,and create a load wasm lib to use in browser.
I did the fourth step in the readme and I got this error: ``` PS C:\Users\ASD\Project\js\node-nana> npm install --save nbind autogypi node-gyp npm WARN deprecated [email protected]: request has been deprecated,...
I'm trying to wrap a class which makes use of C++ iterators, and would like to express this as a Javascript iterator. Is there any way to accomplish this using...
After cloning, while `npm installl`ing, `nbinid` will produce the following errors with the following node/npm versions: ``` ➜ nbind git:(master) ✗ node -v v12.18.4 ➜ nbind git:(master) ✗ npm -v...
Hello and thanks for your great work! I am trying to build [turbo vision TUI framework](https://github.com/magiblot/tvision/issues/27) binding for node with nbind. Followed the vg instruction and finally got my build...
I made a comment on this closed issue about not being to override RTTI... https://github.com/nodejs/node-gyp/issues/26 I'm using nbind on Windows 64-bit (with Electron). I later realized it appears nbind has...
I was having issues with the npm published version. Building off the master branch works for Node v12: ```sh yarn add https://github.com/charto/nbind ``` But I get errors when attempting to...