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 Home Route

workspaces unavailable

var http = require('http'); http.createServer(function (request, response){ homeRoute(request, response); }).listen(3000); console.log('Server running at http://<workspace-url>/');

//2. Handle HTTP route GET / and POST / i.e. Home function homeRoute(request, response){ //if url == "/" && GET if(request.url === "/"){ //show search response.writeHead(200, {'Content-Type': 'text/plain'}); response.write("Header\n"); response.write("Search\n"); response.write('Footer\n'); } //if url == "/" && POST //redirect to /:username }

// I cannot seem to connect to the workspaces, tried cntrl C to kill command line, switched ports several times. Initially it worked, when all we were logging was hello world. Please help.