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 trialMillan Singh
Full Stack JavaScript Techdegree Student 8,392 PointsWhy 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?
Sanjay Patel
12,501 PointsSanjay Patel
12,501 PointsYes, 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?