How can I create simple view engine using JavaScript like Mustache, so that the word between the {{ }}
is replaced by its value, like:
<p>hey there {{ codeName }}</p>
codeName = 'JavaScript 6'
so that it be converted to:
<p>hey there JavaScript 6</p>