[nodejs] Re: How to embed NodeJS into my application?

2014-01-03 Thread Floby
Also, maybe you'd be better off embedding your application into node.js rather than embedding node.js into your application. On Tuesday, 16 July 2013 07:03:42 UTC+2, philip andrew wrote: Hi, I have a C++ application and I want to embed NodeJS into it on XCode and Visual C++, how can I do

[nodejs] Re: How to embed NodeJS into my application?

2014-01-02 Thread ZECTBynmo
I've been working on a library that allows you to link node.js into your application as a static library: https://github.com/ZECTBynmo/tacnode I'd love some feedback and help working on it! On Tuesday, 16 July 2013 01:03:42 UTC-4, philip andrew wrote: Hi, I have a C++ application and I

Re: [nodejs] Re: How to embed NodeJS into my application?

2013-07-20 Thread philip andrew
Yes maybe, thanks, I need to understand it . reading On Thursday, July 18, 2013 9:27:33 PM UTC+8, mscdex wrote: On Thursday, July 18, 2013 12:41:34 AM UTC-4, philip andrew wrote: The reason why? I'm not programing a game, I'm programming a desktop application. The reasons not

Re: [nodejs] Re: How to embed NodeJS into my application?

2013-07-18 Thread mscdex
On Thursday, July 18, 2013 12:41:34 AM UTC-4, philip andrew wrote: The reason why? I'm not programing a game, I'm programming a desktop application. The reasons not particularly important from your point of view expect to say that its a requirement to have NodeJS packaged with my

[nodejs] Re: How to embed NodeJS into my application?

2013-07-17 Thread mscdex
On Tuesday, July 16, 2013 1:03:42 AM UTC-4, philip andrew wrote: I have a C++ application and I want to embed NodeJS into it on XCode and Visual C++, how can I do this? Do you really need node itself or is libuv what you really want? -- -- Job Board: http://jobs.nodejs.org/ Posting

[nodejs] Re: How to embed NodeJS into my application?

2013-07-17 Thread philip andrew
I want NodeJS server embedded in my C++ application. On Wednesday, July 17, 2013 9:56:16 PM UTC+8, mscdex wrote: On Tuesday, July 16, 2013 1:03:42 AM UTC-4, philip andrew wrote: I have a C++ application and I want to embed NodeJS into it on XCode and Visual C++, how can I do this? Do you

Re: [nodejs] Re: How to embed NodeJS into my application?

2013-07-17 Thread Ben Noordhuis
On Wed, Jul 17, 2013 at 5:10 PM, philip andrew philip14...@gmail.com wrote: I want NodeJS server embedded in my C++ application. You can send and receive file descriptors to and from a node.js process. That will be much less hassle than trying to embed it. -- -- Job Board:

Re: [nodejs] Re: How to embed NodeJS into my application?

2013-07-17 Thread Stephen Belanger
Depends what you want to do with it. If, for example, you want to use it for scripting a game engine it NEEDS to be in the same process so you can package and distribute it together. On Wednesday, 17 July, 2013 at 2:05 PM, Ben Noordhuis wrote: On Wed, Jul 17, 2013 at 5:10 PM, philip andrew

Re: [nodejs] Re: How to embed NodeJS into my application?

2013-07-17 Thread philip andrew
Hi Ben, Well I do have NodeJS starting as a process, and I will settle with this until someone can tell me how to embed it. But I don't like it like this - I want it embedded so I can start it and stop it quickly and I can have more control and understanding of what's going on in terms of