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

Millan Singh
seal-mask
.a{fill-rule:evenodd;}techdegree
Millan Singh
Full Stack JavaScript Techdegree Student 8,392 Points

Why are the functions designed this way?

Why do you just call the two functions for the home and user routes in the app.js create server function and then do the if statements to verify what the link is in the routing functions? Why are you not checking to see in the create server function what the url is and then pushing to the function you want from there?

Yes, I was wondering this too. It seems like you're guaranteeing superfluous function calls, when you could us conditionals to make only a single function call per request. Is there a larger design pattern that we're not seeing?