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 Express Basics Parameters, Query Strings, and Modularizing Routes Modular Routes

Michael Pashkov
Michael Pashkov
22,024 Points

Why is dot in front of ('./routes')?

Hi, guys! Why is dot in front of routes? const routes = require('./routes'), why not just const routes = require('/routes') - without dot.

2 Answers

jobbol
seal-mask
.a{fill-rule:evenodd;}techdegree
jobbol
Full Stack JavaScript Techdegree Student 16,610 Points

So I spun up a workspace using both the dot-slash and the slash. I also tried other means such as the module name alone. I found node will throw an error if you use anything other than the dot-slash.

You can fork it from here and experiment yourself.

I believe the dot-slash is necessary because you always start from an absolute path or a relative path. It has to know which one it's using. Absolute paths begin like C:\ or http://. Relative paths begin like ./ or ../.

Can't find any sources confirming this behavior though.

Interesting question.