[nodejs] Re: Make errors: Linux ia32, for node-v0.6.6 and node-v0.4.8

2012-03-23 Thread Dmitry Bochkarev
good job, thanks On Mar 22, 8:53 pm, Ben Noordhuis i...@bnoordhuis.nl wrote: On Thu, Mar 22, 2012 at 04:35, Dmitry Bochkarev dimabochka...@gmail.com wrote: but without tls support node useless. 1) download opnessl sources from openssl.org 2) ./config shared 3) cd ../node-v0.6.13 4)

Re: [nodejs] Isolates removed [threads_a_gogo] updated

2012-03-23 Thread Jorge
On Mar 22, 2012, at 3:54 PM, alFReD NSH wrote: On Wednesday, 21 March 2012 18:24:13 UTC+8, Jorge wrote: Please update now to the latest v0.1.2 that (now truly) fixes that tiny (32 bytes) leak. I have tried threads_a_gogo for something, didn't find anything wrong about it and it's much

Re: [nodejs] Re: Is there any way to control the distribution of request to workers in cluster?

2012-03-23 Thread Matt
No, it's weakness in assuming you'll always have everything on one host. If you want stuff to hang around until the client reconnects next time use external storage, such as Redis. On Fri, Mar 23, 2012 at 3:48 AM, darcy freeda...@gmail.com wrote: Got it. Thank you. It's really weakness cause

[nodejs] tty module and meta key

2012-03-23 Thread Mark Volkmann
keypress events emitted when using the core tty module provide a key object that has the properties shift, ctrl and meta. I'm running on a Mac. I can get shift and ctrl keystrokes, but not meta keystrokes. I've tried both the option key and the command key. Which is supposed to be the meta key?

Re: [nodejs] api service with node and mongo db

2012-03-23 Thread Matt
On Fri, Mar 23, 2012 at 6:04 AM, luckydev lucky.develo...@gmail.com wrote: Is node the right platform for this? It's as good a platform for it as any. Also, I want to use Mongo for its No-SQLness. ... I have no words. What are the *requirements*? -- Job Board: http://jobs.nodejs.org/

Re: [nodejs] node-inspector and v8

2012-03-23 Thread Camilo Aguilar
Relevant https://groups.google.com/forum/?fromgroups#!searchin/v8-users/heap$20profiling$20via$20debugger$20agent/v8-users/hI3QMJG4JwU/4RKkT84Y7lkJ On Thu, Mar 22, 2012 at 2:10 PM, Camilo Aguilar cam...@cloudescape.comwrote: fwiw, the remote protocol doesn't seem to support profiling yet On

Re: [nodejs] Re: reload a child_process if the process die unexpectedly?

2012-03-23 Thread C. Mundi
Oh, right. The stackframe will be cleaned up at the end of every event loop. And since events don't interrupt the one and only thread, even a long-running context of the caller will end up with at most a +1 to the stack depth. Thanks. I will have to fins another excuse to learn about the V8

[nodejs] Re: Komodo 7.0.2 released with improved support for Node

2012-03-23 Thread Todd Whiteman
Hi Mark, we do indeed. It was added in 7.0.0a2. See release notes: http://docs.activestate.com/komodo/7.0/releases/ide.html On Mar 22, 7:07 pm, Mark Hahn m...@hahnca.com wrote: You don't support coffeescript yet, do you? On Thu, Mar 22, 2012 at 6:09 PM, Todd Whiteman

Re: [nodejs] Re: Komodo 7.0.2 released with improved support for Node

2012-03-23 Thread Karl Tiedt
Hmm I downloaded the trial and trying to test a simple Node test case and it says Javascript Debugging is not supported yet Node.js bin is all accounted for in the settings... The help takes you to javascript panels where there are no configs to setup... so curious where these Node.js features

[nodejs] Re: Komodo 7.0.2 released with improved support for Node

2012-03-23 Thread Todd Whiteman
On Mar 23, 9:32 am, Karl Tiedt kti...@gmail.com wrote: Hmm I downloaded the trial and trying to test a simple Node test case and it says Javascript Debugging is not supported yet Node.js bin is all accounted for in the settings... Hey Karl, You need to ensure the language-type is set to

Re: [nodejs] Komodo 7.0.2 released with improved support for Node

2012-03-23 Thread Fadrizul H.
Cool, will try and give my feedback Sent from my BlackBerry® -Original Message- From: Todd Whiteman tod...@activestate.com Sender: nodejs@googlegroups.com Date: Thu, 22 Mar 2012 18:09:39 To: nodejsnodejs@googlegroups.com Reply-To: nodejs@googlegroups.com Subject: [nodejs] Komodo 7.0.2

Re: [nodejs] Re: Komodo 7.0.2 released with improved support for Node

2012-03-23 Thread Karl Tiedt
Thanks Todd, I'll give that a shot when I get home, the content is definitely not clearly Node, since it would qualify as any CommonJS type javascript package. I was looking for a way to say this project is a Node project and didn't notice the bottom right corner indicating javascript. -Karl

[nodejs] Version 0.6.14 (stable)

2012-03-23 Thread Isaac Schlueter
2012.03.22 Version 0.6.14 (stable) * net: don't crash when queued write fails (Igor Zinkovsky) * sunos: fix EMFILE on process.memoryUsage() (Bryan Cantrill) * crypto: fix compile-time error with openssl 0.9.7e (Ben Noordhuis) * unix: ignore ECONNABORTED errors from accept() (Ben Noordhuis) *

Re: [nodejs] Re: [ANN] reified, Binary Data API for Node + Browsers. Powerful, easy to use, and performance conscious. ES6 binary data spec inspired.

2012-03-23 Thread Brandon Benvie
Sorted all the issues and made a basic browser build process. Also added support for browsers lacking DataView (Firefox notably). So now it should work in any browser that supports TypedArrays. This is very useful given the increasing amount of APIs that expose data as TypedArrays such as all

[nodejs] Getting started with testing and using stubs

2012-03-23 Thread Martin Lundberg
Hi! I'm having problems getting up and running with testing my node.js code. I've got a file called auth.js with a function that looks like: authenticate(email, password, callback). The authenticate function tries to fetch a user with the given e-mail using a collaborator UserRepository

[nodejs] Re: api service with node and mongo db

2012-03-23 Thread christkv
The first place to learn a bit more about mongodb is here http://www.10gen.com/presentations I would spend an hour or two watching some of the presentations. You might find someone who has a similar app like you are looking to build or just general information about mongodb. On Mar 23, 10:04 

[nodejs] Best way to organize modules which has dependencies

2012-03-23 Thread Martin Lundberg
Hi, I'm curious convention on how to design modules which has dependencies. For example if I've got an auth module with a function called authenticate which in turn uses a UserRepository object (which in turn uses a database library object like node-mysql) which communicates with the database,

Re: [nodejs] Best way to organize modules which has dependencies

2012-03-23 Thread Tim Caswell
That's actually not a bad model. The connect middleware system I designed works like that. Each middleware is a standalone module. It may depend on some other modules for functionality (the static file server module depends on the mime database module). But as far as runtime configuration and

[nodejs] Re: api service with node and mongo db

2012-03-23 Thread Mihai Tomescu
I'm also building a restful json api with node and mongo and it's smooth sailing. Definitely go well together. On Friday, March 23, 2012 6:39:36 PM UTC-4, christkv wrote: The first place to learn a bit more about mongodb is here http://www.10gen.com/​presentations

[nodejs] Re: node-redis sorting option?

2012-03-23 Thread Mihai Tomescu
Just use a sorted set dude. On Friday, March 23, 2012 3:24:50 AM UTC-4, Angelo Chen wrote: Hi, using node_redis(https://github.com/​mranney/node_redishttps://github.com/mranney/node_redis), I came to this situation: client.keys(reg:article:*, function (err, replies) { } the

RE: [nodejs] Re: api service with node and mongo db

2012-03-23 Thread Glenn Block
If being used by many node apps in production is any indication then the mono driver fits the bill. Sent from my Windows Phone From: christkv Sent: 3/23/2012 3:39 PM To: nodejs Subject: [nodejs] Re: api service with node and mongo db The first place to learn a bit more about mongodb is here