Skip to content

Instantly share code, notes, and snippets.

@publickeating
Created January 13, 2011 19:25
Show Gist options
  • Save publickeating/778432 to your computer and use it in GitHub Desktop.
Save publickeating/778432 to your computer and use it in GitHub Desktop.
File upload server response
res.send(JSON.stringify({
state: 'success',
fileName: file.filename,
mimeType: file.mime,
imagePath: relativePath
}), {
'Content-Type': 'text/plain'
}, 200);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment