Re: [nodejs] Anonymous functions garbage collection

2012-09-13 Thread Vinayak Mishra
I don't see any problem with your approach, and I would probably have done the same. Yet, JSLint would remind about making functions within loop. Well, should not matter unless you're looping over arrays with /some/ thousands elements. As an alternative, if code readability/simplicity is a con

Re: [nodejs] Re: NodeJs e-commerce solution?

2012-09-26 Thread Vinayak Mishra
Dear all, We at Urbantouch (www.urbantouch.com), an Indian e-commerce startup, have built a tailor-made node.js e-commerce platform/frontend/crm, logistics backend. It's been 6 months we ditched magento platform for the home-grown node.js setup, needless to say we're delighted with the perfo

Re: [nodejs] Re: NodeJs e-commerce solution?

2012-09-26 Thread Vinayak Mishra
I feel no shame at admitting we are no good at creating eye-catching designs, hence no fancy stuff, just a simple design and straight to the point. We had to do away with magento system because it wasn't good at handling a lot of load. We also had to come up with a in-house solution and were pr

Re: [nodejs] Re: NodeJs e-commerce solution?

2012-09-27 Thread Vinayak Mishra
Thanks for showing interest, greelgorke. The nodestore code is proprietory, and not available on as open source yet. We have created few independent npm modules that could be useful to other projects, we would like to publish some of these modules on npm some day. But at the moment, we are bein

Re: [nodejs] Re: node-mysql: Looking for maintainers!

2012-10-17 Thread Vinayak Mishra
I have tested the node-mysql module with mariadb on ubuntu system, and runs fine without any hiccup. Would like to know if there are any open ends I have missed. I can share packages I had installed to get it up and running, but you could find all its dependencies on google. -- vinayak On Wed, Oc

Re: [nodejs] [ANN] \nooline – Content Management Made Easy Peasy

2012-05-11 Thread Vinayak Mishra
Good attempt, but ignoring current crawler behavior does not look encouraging, more so because most of the crawlers simply ignore javascript. I am in for a templating engine, something that generates static pages for cms like systems. We do already have solutions in other languages, so not real

Re: [nodejs] [ANN] \nooline – Content Management Made Easy Peasy

2012-05-11 Thread Vinayak Mishra
Hi Lucas, Maybe I jumped to a conclusion too soon, my bad. When I do npm install I'm getting this error: fatal: Not a git repository: /Users/Mathias/Projects/punycode.js/.git/modules/vendor/qunit Am I missing something here? Also, I get We couldn't find that resource on our server. when I

Re: [nodejs] running a task at certain time

2012-06-03 Thread Vinayak Mishra
Angelo, Setup a system level cron to run at specified time, or if you need to do certain job from you app, take a look at node-cron . On Sunday 03 June 2012 01:05:55 PM IST, Angelo Chen wrote: Hi, I need to run a function every day, following will wo