-
Notifications
You must be signed in to change notification settings - Fork 29.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can Node.js be compiled as a DLL rather than a .exe #2953
Comments
Related: nodejs/roadmap#9 |
There is no easy way to build a .dll right now. I'd start with setting node_target_type to 'shared_library' in node.gyp but that's probably not the only knob you have to adjust. You'll find out quick enough when you start building. |
I think atom/electron comes with a node.dll. Short search gave me this atom/node@71ace5e |
Cc @zcbenz -- any advice? Anything that could be upstreamed to us? |
I'm still trying to figure out a decent and flexible interface of embedding Node.js to other applications, haven't got a good idea yet. For op's question, I think setting |
@gesslerpd any update? did @zcbenz's suggestion work? |
Big thanks to you all for the help! I was able to find the |
@gesslerpd would you please suggest how you actually get the .dll? I am confused! |
Is there an existing .dll file for node that will allow node to be used within the same process space as a C#/.NET application. If not is there anyway to build this .dll easily?
The text was updated successfully, but these errors were encountered: