I'm wondering if there is some way to take my custom shared/static libraries, made in C, and use them into another higher language such as python or node.js.
I came with this because I'm writing a few libraries to calculate some math stuff. I heard about node.js not being so good for heavy calculations (but is for networking I/O).
Hence, I'm really thinking on spend some time in find a way to make nodejs to use my C libraries in smart way. I mean, I want to make nodejs delegate the heavy calculations to C, and get the answers back somehow.
But I'm accepting any good advice about using some other higher level languages (or tools) that does the job. Any scenario rather than those I said will be appreciated.
Edit:
I Just Found this question in stackoverflow that got my attetion. I'll try it for now.