Created
February 14, 2012 20:38
-
-
Save tjanczuk/1830180 to your computer and use it in GitHub Desktop.
Console
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
console.log('Before writeHead'); | |
res.writeHead(200); | |
console.log('Before write'); | |
res.write('Hello, '); | |
console.log('Before end'); | |
res.end('world!\n'); | |
console.log('After end'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment