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 Build a Simple Dynamic Site with Node.js Creating a Basic Template Engine in Node.js Binding Values

Tim Smith
Tim Smith
6,069 Points

Heads Up, fs.readFileSync() needs to have toString() chained to it

Just wanted to put this here as it took me a bit of messing around before figuring out what was going wrong.

In the video, content.replace() in mergeValues() seems to work just fine, but I found I needed to call toString() on the fs.readFileSync() function to get the proper string representation of fileContents.

Tim Smith
Tim Smith
6,069 Points

Just realized he addresses this a few moments afterwards. My bad.

Is using {encoding: "utf8"} also quicker without another function call? Probably moot but I'm interested. Thanks for pointing this out because I was 100% with you before ending the video, as well!