Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript Build a Simple Dynamic Site with Node.js Handling Routes in Node.js Populating User Information

Unhandled 'error' event

i am getting this message in the console. Any help is much appreciated.

events.js:183
throw er; // Unhandled 'error' event
^

Error: write after end
at write_ (_http_outgoing.js:622:15)
at ServerResponse.write (_http_outgoing.js:617:10)
at Object.user (/home/treehouse/workspace/router.js:21:14)
at Server.<anonymous> (/home/treehouse/workspace/app.js:9:11)
at emitTwo (events.js:126:13)
at Server.emit (events.js:214:7)
at parserOnIncoming (_http_server.js:660:12)
at HTTPParser.parserOnHeadersComplete (_http_common.js:119:17)
treehouse:~/workspace$

Steven Parker
Steven Parker
229,670 Points

Just the error isn't much to go on, but if you make a snapshot of your workspace and post the link to it here, we can replicate the issue and check it out.

1 Answer

Steven Parker
Steven Parker
229,670 Points

It looks like there's a missing open brace ("{") after the "if" statement on line 6, and a missing closing brace ("}") to end the conditional block that should be after line 11.

You're the best Steven! Thanks