Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Torng-Lin Chen
2,617 Points__dirname in jade
When I add __dirname in front of "./views" the app wouldn't run. app.set("views", __dirname + "./views");
Why does it only run when it's app.set("views", "./views"); ?
1 Answer

Sam Hall
Courses Plus Student 8,636 PointsHi Torng-Lin,
I think you have an extra dot. In the vid, Huston subtly removes it at about 03:02.
If you've got your Jade templates in a directory called "views", then It should be:
app.set("views", __dirname + "/views");
Not:
app.set("views", __dirname + "./views");
Sam
Nathan Wakefield
7,065 PointsNathan Wakefield
7,065 PointsI had the same problem. Thanks!
Jaymes Young
36,282 PointsJaymes Young
36,282 PointsI also had that problem, thank you for catching it.