[nodejs] Re: Newbie Question

2015-08-28 Thread hacksparrow
It will not generate any file. You will have to create the program.js file yourself and add some code in it. Let' say you have added the following: console.log('Hello World!'); Now, when you run node program.js from the terminal, this file will be executed by node and it will print "Hello Worl

[nodejs] Re: Current state of replacements for connect.multipart() - any feedback?

2014-02-01 Thread hacksparrow
busboy is indeed the best alternative currently, but it is not the friendliest when it comes to its interface. I wrote a super friendly wrapper on top of it. Take a look at Multer<https://github.com/hacksparrow/multer>. A minimal options object all you need to pass it to make it wor