Re: [nodejs] Version 0.9.1 (Unstable)

2012-09-01 Thread Koichi Kobayashi
Hi, > Macintosh Installer (Universal): http://nodejs.org/dist/v0.9.1/node-v0.9.1.pkg This file is not found. http://nodejs.org/dist/v0.9.1/ docs/ 28-Aug-2012 20:48 - x64/ 28-Aug-2012 21

Re: [nodejs] process.env.hasOwnProperty

2012-06-22 Thread Koichi Kobayashi
Hi, $ node > noProto = Object.create(null); {} > noProto instanceof Object false `process.env instanceof Object` should be `false` if it has no prototype. On Fri, 22 Jun 2012 17:04:02 -0700, Mikeal Rogers wrote: > process.env should be a real js object, or at least act like one. > > if we

Re: [nodejs] Re: Event loop blocking. How to detect?

2012-06-06 Thread Koichi Kobayashi
Here is similar proposal: https://github.com/joyent/node/issues/2395 On Wed, 6 Jun 2012 11:42:30 -0300, Jose F. Romaniello wrote: > this might sound very stupid,... but wouldn't be useful to have a parameter > or something to set the max milliseconds a tick can take? > > node myapp.js --tick

Re: [nodejs] Will vert.x pose a threat to node.js?

2012-05-10 Thread Koichi Kobayashi
Hi, Node (libeio) has only 4 [1] background threads (per process) for file I/O, but Vert.x has 20 [2] (per instance). [1] https://github.com/joyent/node/blob/v0.6.17/deps/uv/src/unix/eio/eio.c#L389 [2] https://github.com/purplefox/vert.x/blob/v1.0.0.final/src/main/java/org/vertx/java/core/impl/D

Re: [nodejs] HTTP module not accepting CONNECT requests

2012-05-06 Thread Koichi Kobayashi
Hi Diogo, Here you go: https://github.com/koichik/node-tunnel On Sun, 6 May 2012 23:20:51 +0100, Diogo Resende wrote: > I'm trying to make an https proxy and I'm not able to make the http module > accept CONNECT requests. I have to use the net module directly. Am I missing > something? >

Re: [nodejs] New core team member: Nathan Rajlich (TooTallNate)

2012-03-15 Thread Koichi Kobayashi
Congrats, Nathan! On Wed, 14 Mar 2012 21:14:27 -0700, Nathan Rajlich wrote: > Thanks for the warm welcome everyone! I just want to say I love being a > part of this community, and I look forward to helping node blossom more > than it already is :) > > On Wed, Mar 14, 2012 at 7:55 PM, Ryan Doe

Re: [nodejs] Re: Connecting to an HTTPS server through a HTTP proxy

2012-02-18 Thread Koichi Kobayashi
Hi Elio, node-tunnel v0.0.1 which supports Node v0.6.11 has been released. On Thu, 16 Feb 2012 10:13:35 -0800 (PST), Elio wrote: > Wow that's that looks awesome! Eagerly looking forward for the > release. > > On Feb 16, 11:21?am, Koichi Kobayashi wrote: > > Hi Elio, &

Re: [nodejs] Connecting to an HTTPS server through a HTTP proxy

2012-02-16 Thread Koichi Kobayashi
Hi Elio, You can use node-tunnel. https://github.com/koichik/node-tunnel Current version (v0.0.0) supports only Node v0.7, but next version will work with v0.6.11 (probably it will be released soon). On Thu, 16 Feb 2012 08:55:40 -0800 (PST), Elio wrote: > Hi, > > In our application we need

Re: [nodejs] using HTTPS

2012-02-06 Thread Koichi Kobayashi
Hi, > var https = require('http'); require('https') ^ :) On Mon, 6 Feb 2012 20:28:27 -0600, Mark Volkmann wrote: > I have a simple HTTPS server that is very similar to the one in the > documentation for the HTTPS module. When I run it, I get "Error: > addListener only takes inst