nodejs express 静态隐藏源代码 html

nodejs express hide source code of static html

在 nodejs 中是否可以使用 express 将源代码隐藏在我的静态 html 目录中,而无需为每个 html 页面重写新的端点?

服务器代码如下所示,我的网站在目录 html

  app.use(express.static('html'));

我正在寻找类似于 PHP echo 的东西,它隐藏了客户端源代码

nodejs 似乎无法在 html 页面内执行 'server side script',类似于

<?php
  //hidden script, source-code, leading up to an $echo
?>

如果最终用户要 'view source'

,则脚本的源代码对最终用户是隐藏的