Created
January 6, 2016 12:29
-
-
Save nakamuray/687eb8772cb68c736d25 to your computer and use it in GitHub Desktop.
Error: EAGAIN: resource temporarily unavailable, write
This file contains 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
var fs = require('fs'); | |
for (i=0; i<10000; i++) { | |
fs.writeSync(process.stdout.fd, 'hello world!\n'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment