是否有用于 node.js 的库来“解析”具有特定语法的文件内容?例如,我有一个文件要在我的 node.js 服务器上提供:
<!DOCTYPE html>
<html>
<head>...</head>
<body>
<?node echo Date.getTime(); ?> <!-- or something like this, I hope you have got the idea -->
</body>
</html>
然后它返回一个 HTML 文档:
<!DOCTYPE html>
<html>
<head>...</head>
<body>
08.08.2013 <!-- or something like this, I hope you have got the idea -->
</body>
</html>
我不知道如何更准确地描述它,比如 PHP 用于 Apache 服务器,但用于 node.js 服务器。