Re: [nodejs] Scaling a spdyproxy Node.js server

2014-05-23 Thread Sai
Thank You Fedor, let me add it and test it. On Friday, May 23, 2014 10:09:02 PM UTC+5:30, Fedor Indutny wrote: > > Hey! > > You need to add `spdy/3.1`, `spdy/3` to the `npn` array. > > > On Fri, May 23, 2014 at 4:11 PM, Sai >wrote: > >> Hi Fedor, >> >> I have tried bud as well. I don't think it w

Re: [nodejs] how to connect node.js with ldap server

2014-05-23 Thread abhi garg
Thank you Daniel. On Friday, May 23, 2014 9:36:50 PM UTC+5:30, Daniel R. wrote: > > Passport is a great framework for handling authentication in node. A quick > search shows many ldap strategies exist for passport including active > directory. The passport website has great documentation to get

[nodejs] Re: NodeJS IPC which spec ? Alternative for Python to do a process.send() ?

2014-05-23 Thread Alexandre Strzelewicz
Thanks for this information, do you know where these socket files are stored ? If I see that its complicated to implement I will go to another alternative On Friday, May 23, 2014 10:39:19 AM UTC+2, greelgorke wrote: > > ah sorry. i missed, that the package is wip. > > Am Donnerstag, 22. Mai 2014

Re: [nodejs] Scaling a spdyproxy Node.js server

2014-05-23 Thread Fedor Indutny
Hey! You need to add `spdy/3.1`, `spdy/3` to the `npn` array. On Fri, May 23, 2014 at 4:11 PM, Sai wrote: > Hi Fedor, > > I have tried bud as well. I don't think it working on this proxy server. > Here is my conf.json file http://pastebin.com/N2KTAdMa. It is not doing > any connect requests or

[nodejs] CRM made in node.js

2014-05-23 Thread Alejandro Paciotti
Hi! Anyone know any open source crm made ​​in node.js? Thanks! alejandro.pacio...@gmail.com -- Job board: http://jobs.nodejs.org/ New group rules: https://gist.github.com/othiym23/9886289#file-moderation-policy-md Old group rules: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guid

Re: [nodejs] Scaling a spdyproxy Node.js server

2014-05-23 Thread Sai
Thank You Fedor for the quick reply. I'm trying to implement bud. However, I'm already using 0.11.14 pre version. However it is not upto the mark on a dedicated server with 16 cluster workers (i.e. on an 8 core machine). The workers kind of die after every 12-18 hours using it. Every time Ill h

[nodejs] Re: NodeJS IPC which spec ? Alternative for Python to do a process.send() ?

2014-05-23 Thread greelgorke
ah sorry. i missed, that the package is wip. Am Donnerstag, 22. Mai 2014 22:39:15 UTC+2 schrieb Alexandre Strzelewicz: > > Hello, > > I'm spawning a Python script in NodeJS via .spawn() and I would like to > know if there is an alternative to do a `process.send()` with Python ? > > What is the sp

Re: [nodejs] Adding modules to node.js on Android

2014-05-23 Thread Ingo Albers
Am Freitag, 23. Mai 2014 08:46:14 UTC+2 schrieb Ingo Albers: > > Am Donnerstag, 22. Mai 2014 18:02:56 UTC+2 schrieb Kevin Ingwersen: >> >> >> Am 22.05.2014 um 17:51 schrieb Aria Stewart : >> >> > >> > On May 22, 02014, at 10:04, Ingo Albers wrote: >> >> >> >> For a new project I need some modu

Re: [nodejs] Adding modules to node.js on Android

2014-05-23 Thread Ingo Albers
Am Freitag, 23. Mai 2014 08:46:14 UTC+2 schrieb Ingo Albers: > > Am Donnerstag, 22. Mai 2014 18:02:56 UTC+2 schrieb Kevin Ingwersen: >> >> >> Am 22.05.2014 um 17:51 schrieb Aria Stewart : >> >> > >> > On May 22, 02014, at 10:04, Ingo Albers wrote: >> >> >> >> For a new project I need some modu

Re: [nodejs] in spawn process memory usage is growing

2014-05-23 Thread // ravi
On May 22, 2014, at 8:08 PM, Stefano Cudini wrote: > php.stdout.pipe(process.stdout); > This doesn't make sense to me, that you are piping the stdout of the "php" process to your own stdout. Did you mean to pipe your stdout to php's stdin? I have always found Node's Streams stuff complicated o

Re: [nodejs] Scaling a spdyproxy Node.js server

2014-05-23 Thread Fedor Indutny
Well, I think you could check the logs. Server couldn't just die without saying anything at all. On Fri, May 23, 2014 at 12:25 PM, Sai wrote: > Thank You Fedor for the quick reply. I'm trying to implement bud. > > However, I'm already using 0.11.14 pre version. However it is not upto the > mark

[nodejs] Re: NodeJS IPC which spec ? Alternative for Python to do a process.send() ?

2014-05-23 Thread greelgorke
all you get is unix domain sockets wrapped in streams: http://nodejs.org/api/child_process.html#child_process_child_stdin you can use dnode with them to establisch a RPC between them. there is a dnode implementation for Python https://github.com/jesusabdullah/dnode-python Am Donnerstag, 22. Ma

Re: [nodejs] Scaling a spdyproxy Node.js server

2014-05-23 Thread Sai
Hi Fedor, I have tried bud as well. I don't think it working on this proxy server. Here is my conf.json file http://pastebin.com/N2KTAdMa. It is not doing any connect requests or anything. Just let me know if I'm doing anything wrong? Here is the log file of both bug and spdyproxy (http://past

Re: [nodejs] how to connect node.js with ldap server

2014-05-23 Thread Daniel Rinehart
Passport is a great framework for handling authentication in node. A quick search shows many ldap strategies exist for passport including active directory. The passport website has great documentation to get the basics setup and then a search in npm will give you options on which module implements

Re: [nodejs] in spawn process memory usage is growing

2014-05-23 Thread // ravi
On May 23, 2014, at 9:36 AM, // ravi wrote: > On May 22, 2014, at 8:08 PM, Stefano Cudini wrote: >> php.stdout.pipe(process.stdout); > > This doesn't make sense to me, that you are piping the stdout of the "php" > process to your own stdout. > Did you mean to pipe your stdout to php's stdin? I

Re: [nodejs] Adding modules to node.js on Android

2014-05-23 Thread Ingo Albers
Am Donnerstag, 22. Mai 2014 18:02:56 UTC+2 schrieb Kevin Ingwersen: > > > Am 22.05.2014 um 17:51 schrieb Aria Stewart >: > > > > > > On May 22, 02014, at 10:04, Ingo Albers > > wrote: > >> > >> For a new project I need some modules (serialport, socket.io, express) > but I can't use npm on my