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 (2015) Using Templates with Express Using Jade in your Express App

__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
PLUS
Sam Hall
Courses Plus Student 8,636 Points

Hi 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
Nathan Wakefield
7,065 Points

I had the same problem. Thanks!

I also had that problem, thank you for catching it.