[nodejs] Re: [ANN] Modulus Node.js Hosting Platform Goes Live

2013-03-11 Thread Brandon Cannaday
Thanks for checking it out Tony! 1. We don't currently offer anything special for open-source or not-for-profits. We've been approached by a few organizations and it's definitely something we'll be investigating. 2. Addons are coming soon, and I think cron would be a perfect fit. 3. Git integr

[nodejs] Run Meteor apps anywhere with Demeteorizer

2013-02-26 Thread Brandon Cannaday
https://github.com/OnModulus/demeteorizer We found some users trying to run Meteor apps as if they were regular ole Node.js apps, so we built this little CLI tool that wraps Meteor's bundle command. It automatically generates a package.json file, allows the user to set Meteor's hard-coded MIN_N

[nodejs] Re: Simple chat-room example?

2013-01-08 Thread Brandon Cannaday
Here's a tutorial that we wrote that provides step-by-step instructions on how to create a chat room with socket.io and Node. Might be helpful. http://www.switchonthecode.com/tutorials/simple-chat-nodejs-plus-websockets On Friday, January 4, 2013 6:38:17 PM UTC-5, Josh Santangelo wrote: > > I'm

[nodejs] Re: http-proxy result-access

2012-08-29 Thread Brandon Cannaday
You can do this by overriding the write function of the response. proxy.on('start', function(req, res, target) { var existingWrite = res.write; res.write = function(data) { // cache data // Call the base write function. existingWrite.apply(res, arguments); }; }); We did somethi