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 trialTorng-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.