JavaScript File
import templateEngine from '@partivo/template-engine';
const page = templateEngine.renderFile('/usr/local/bin/template/404.html', {
hostname: "partivo.net"
}); // 404.html
HTML File
<html>
<head>
<title>404 Not Found</title>
</head>
<body>
<center><h1>404 Not Found</h1></center>
<hr>
<center>{{ hostname }}</center>
</body>
</html>