When using Express for Node.js, I noticed that it outputs the HTML code without any newline characters or tabs. Though it may be more efficient to download, it\'s not very r
In express 4.x, add this to your app.js:
app.locals.pretty = app.get('env') === 'development';