Skip to content

Instantly share code, notes, and snippets.

@ntanya
Created June 7, 2012 17: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 ntanya/2890372 to your computer and use it in GitHub Desktop.
Save ntanya/2890372 to your computer and use it in GitHub Desktop.
snippet for file upload
app.get('/', function(req, res) {
res.send('<form method="post" enctype="multipart/form-data">'
+ '<p>Image: <input type="file" name="uploadfile" /></p>'
+ '<p><input type="submit" value="Upload" /></p>'
+ '</form>');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment