[nodejs] Re: Distributed workers recommendations

2013-12-27 Thread Jamison Dance
We use rabbitMQ and https://github.com/addisonj/node-distributor.

On Friday, December 27, 2013 2:10:54 PM UTC-7, Tim Shnaider wrote:

 Thanks for the replies.

 I've had a look at  https://github.com/OptimalBits/bull which is a 
 simplified version of Kue, and 0mq and rabbitmq.

 I am looking for concrete recommendations based on real world experience, 
 please no theory/concepts - i'm already familiar with all of it.


-- 
-- 
Job Board: http://jobs.nodejs.org/
Posting guidelines: 
https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines
You received this message because you are subscribed to the Google
Groups nodejs group.
To post to this group, send email to nodejs@googlegroups.com
To unsubscribe from this group, send email to
nodejs+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/nodejs?hl=en?hl=en

--- 
You received this message because you are subscribed to the Google Groups 
nodejs group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to nodejs+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


[nodejs] Checking for requires that aren't in package.json?

2013-11-06 Thread Jamison Dance
Are there any tools that will check your node project for require calls
that aren't in the package.json? I want to eliminate the surprises that
happen when a dev has a package installed locally but doesn't put it in
node_modules, and then the code gets deployed and blows up in a different
environment.

-- 
-- 
Job Board: http://jobs.nodejs.org/
Posting guidelines: 
https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines
You received this message because you are subscribed to the Google
Groups nodejs group.
To post to this group, send email to nodejs@googlegroups.com
To unsubscribe from this group, send email to
nodejs+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/nodejs?hl=en?hl=en

--- 
You received this message because you are subscribed to the Google Groups 
nodejs group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to nodejs+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


[nodejs] Re: Running tests directly and as part of a suite

2013-01-27 Thread Jamison Dance
Just put the call to runner in the npm test command, so people have an 
example to look at how to run the tests.

On Sunday, January 27, 2013 5:25:15 PM UTC-7, josh wrote:

 node unit/test/test_404.js vs node unit/test/runner.js 
 unit/test/test_404.js.


-- 
-- 
Job Board: http://jobs.nodejs.org/
Posting guidelines: 
https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines
You received this message because you are subscribed to the Google
Groups nodejs group.
To post to this group, send email to nodejs@googlegroups.com
To unsubscribe from this group, send email to
nodejs+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/nodejs?hl=en?hl=en

--- 
You received this message because you are subscribed to the Google Groups 
nodejs group.
To unsubscribe from this group, send email to 
nodejs+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[nodejs] Piping gzipped responses?

2012-09-27 Thread Jamison Dance
I have an Express server with a route that just proxies a request to
another server and pipes it back to the client. It looks like this:

var request = require('request');
function('/whatever', function(req, res) {
  request.get({url: 'http://example.com/someGzippedThing', json:
true}).pipe(res);
});

If I hit http://example.com/someGzippedThing, the response is gzipped.
However, when I hi the /whatever route of my own server, the response
is not gzipped. How can I make sure it stays gzipped when it gets
piped back to the client?

-- 
Job Board: http://jobs.nodejs.org/
Posting guidelines: 
https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines
You received this message because you are subscribed to the Google
Groups nodejs group.
To post to this group, send email to nodejs@googlegroups.com
To unsubscribe from this group, send email to
nodejs+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/nodejs?hl=en?hl=en


Re: [nodejs] ender vs. browserify?

2012-04-23 Thread Jamison Dance
Neat. Sounds like I could just use a package.json file for my client-side 
files, do an `npm install`, and then a browserify build, which is a nice 
workflow.



-- 
Job Board: http://jobs.nodejs.org/
Posting guidelines: 
https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines
You received this message because you are subscribed to the Google
Groups nodejs group.
To post to this group, send email to nodejs@googlegroups.com
To unsubscribe from this group, send email to
nodejs+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/nodejs?hl=en?hl=en


Re: [nodejs] ender vs. browserify?

2012-04-22 Thread Jamison Dance
Does browserify let you install npm modules, similar to `ender build npm 
package names, or do you have to manually download them?

-- 
Job Board: http://jobs.nodejs.org/
Posting guidelines: 
https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines
You received this message because you are subscribed to the Google
Groups nodejs group.
To post to this group, send email to nodejs@googlegroups.com
To unsubscribe from this group, send email to
nodejs+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/nodejs?hl=en?hl=en


Re: [nodejs] [ANN] JavaScript Jabber Podcast

2012-02-06 Thread Jamison Dance
Thanks for the feedback about mics. We are still working out some kinks, so 
that kind is helpful.

I might put words in Yehuda's mouth, but he doesn't like browser code in 
NPM because it forces you to use CommonJS for your browser code, and he 
doesn't want to use CommonJS.

http://pmuellr.blogspot.com/2011/11/debugging-concatenated-javascript-files.html
 
is a decent overview of sourceURL. I was not familiar with it before Yehuda 
mentioned it, so I am learning too.

-- 
Job Board: http://jobs.nodejs.org/
Posting guidelines: 
https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines
You received this message because you are subscribed to the Google
Groups nodejs group.
To post to this group, send email to nodejs@googlegroups.com
To unsubscribe from this group, send email to
nodejs+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/nodejs?hl=en?hl=en