-
Notifications
You must be signed in to change notification settings - Fork 7.3k
Conversation
Adds a node_lib target that builds everything except the node_main.cc as a static library. And the node target would be depended on node_lib and compiles out the executable as usual. With this other projects would be possible to include node as a third party library and embed a node engine in their applications.
What projects are in need of using it this way? It seems to be pretty crazy, because node will block the thread where it executes and will assume that it is a single self-sustained process anyway. |
For example the https://github.com/rogerwang/node-webkit. Yeah the |
I think that this PR should export this symbols then. Otherwise there're not much point in maintaining separate target. May I ask you to add this? |
The functions are exported now. Their declarations were removed by 185c515, so I was not sure if we should take them back. btw, it doesn't really matter if they are not exported, because they are not defined as |
They are useful for third party applications to include node as library and create custom node environments.
There are a few PRs like this, and I'm not insensitive to the needs of embedders, but I'm not sure we're going to move forward with blessing a mechanism just yet. It would be something to consider once we have a more stable interface that we're sure we want to export. |
@tjfontaine good point. |
I can understand if you don't want to export those interfaces before they became stable, but could you accept the |
Although the core team answered the thread, I couldn't keep myself without saying couple of words. @zcbenz I've been playing with the Node.JS sources for a while and I don't think the issue here is the stability in general. Instead the project design may not be proper for embedded usage. For example, any kind of multi threaded access to the library (executing a script on the main context) is a killer. No sandboxing (apart from the wrapping) since there is only one instance. If you are interested with embedding only JS compiler, try v8. In case you are mostly interested with the great Node.JS features, I would prefer RPC like solution. |
Since the Atom editor had been published for a while, I can now share more information on how we integrate node.js into other applications. The node integration in atom/atom is done in atom/atom-shell, and the patches of node we relied on can be found in atom/node. The patches were mainly for following purposes:
And I have a presentation on how node integration works in atom-shell, though some details were ignored for simplicity: https://speakerdeck.com/zcbenz/practice-on-embedding-node-dot-js-into-atom-editor. During atom-shell's long time uses, I think integrating node into a normal desktop application or into Chromium browser works very well. The forked node is still on node v0.11.10, and some patches are dirty and not very suitable for merge into upstream, but I'm very willing to rebase the patches on node's master branch and modify some of the patches to make them suitable for upstream merge, so people who wants to embed node into their apps can benefit from what we have worked out. So is there any chance to merge patches making node more friendly for embedding like this one to upstream in node 0.11 or 0.12? |
Closing due to lack of activity. Can revisit if someone is interested in updating the PR. Given that this is a feature request, however, it would need to be targeted at either http://github.com/nodejs/io.js or http://github.com/nodejs/node |
Adds a node_lib target that builds everything except the node_main.cc as a static library. And the node target would be depended on node_lib and compiles out the executable as usual.
With this other projects would be possible to include node as a third party library and embed a node engine in their applications.