First, let's create a template to be rendered!
p Hello World, #{name}!
Save this in a file ending with the .pug extension (you can call it anything you like, but we will use view.pug in the following code to compile it).
All that's left to do, now, is compile that template! Create a JS script f...