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

Matthew Francis
Matthew Francis
6,967 Points

./ vs __dirname

./ refers to the current working directory

__dirname is always the directory of the current file.

I'm confused by these two terms, could someone give me an example and dumb it down for me? I stackoverflowed this question but I can't seem to comprehend it.

1 Answer

Hey there! While ./ points to the current directory you're working on __dirname gives out the full path of your project, that way is better to use __dirname rather than ./ aka relative paths