Skip to content

Instantly share code, notes, and snippets.

@harbhub
Created February 12, 2013 18:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save harbhub/4772225 to your computer and use it in GitHub Desktop.
Save harbhub/4772225 to your computer and use it in GitHub Desktop.
var form = new formidable.IncomingForm();
var fields = [];
var files = [];
form.uploadDir = __dirname+'/tmp';
form
.on('field', function(field, value) {
log(field,value);
})
.on('file', function(field, file) {
log(field, file);
})
.on('end', function() {
log('form end');
});
form.parse(req);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment