[nodejs] Re: Deployment techniques

2014-05-26 Thread Tim Walling
We've been using *pac* on a project for about 8 months and have really liked it. https://www.npmjs.org/package/pac - Tim On Sunday, May 25, 2014 8:32:11 AM UTC-4, Jake wrote: > > I'd like to know what people have done for node.js application deployments. > > Coming from a compiled-language back

[nodejs] Re: Good way to store passwords server-side for node apps

2013-12-27 Thread Tim Walling
Store them in environment variables and use something like dotenv (https://npmjs.org/package/dotenv) to load them in your application. On Friday, December 27, 2013 10:31:54 AM UTC-5, Reginald Choudari wrote: > > Hello, this morning I was pondering on a good way to store passwords > server-side

Re: [nodejs] [ANN] Boston Node.js in the wild November Meetup

2013-11-20 Thread Tim Walling
No I don't believe so. We've had some recorded in the past but it requires someone from Brightcove IT to be present and we can't always get that resource. On Tuesday, November 19, 2013 8:28:42 AM UTC-5, Brian Lalor wrote: > > On Nov 19, 2013, at 8:06 AM, Daniel Rinehart > > wrote: > > The topi

[nodejs] Re: How to architect this with node?

2012-07-29 Thread Tim Walling
We use redis for this, specifically the coffee-resque module. https://github.com/technoweenie/coffee-resque Jobs get put on the queue and we have workers pick them up to be processed. You could then use something like socket.io to send messages out to clients that whatever you processed has bee