I want to find a way to simplify the installation of the Node.js "libtorrent" module.
My goal is to be able to provide pre-compiled .node files for each architectures, as this is done in the fibers module for example.
This way, the users can install the module without the need to install dependencies, compile, etc.
My question is : if I want to do that, do I need to include all dependencies (libtorrent and some Boost libaries) inside the project and build them with node-gyp too ? Or if I build the module on my system with these dependencies installed, they will be included in the final .node file ?
Thanks for your help.