Skip to content

Instantly share code, notes, and snippets.

@csanz
Created January 21, 2011 02:48
Show Gist options
  • Select an option

  • Save csanz/789169 to your computer and use it in GitHub Desktop.

Select an option

Save csanz/789169 to your computer and use it in GitHub Desktop.
from file: https://github.com/ry/node/blob/6eca6b1ec05c5b386121a992dc7f6502f001f052/doc/api/http.markdown
issue: you are getting the body length, but you are not passing it anywhere.
var body = 'hello world';
response.writeHead(200, {
'Content-Length': body.length,
'Content-Type': 'text/plain' });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment