Skip to content

Instantly share code, notes, and snippets.

@arifsetiawan
Created May 23, 2013 08:54
Show Gist options
  • Save arifsetiawan/5633629 to your computer and use it in GitHub Desktop.
Save arifsetiawan/5633629 to your computer and use it in GitHub Desktop.
Express upload
app.post('/upload', function(req, res) {
console.log(req.body);
console.log(req.files);
res.send('something');
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment