A middleware for express that allows you to process htms in the server side instead of the client side
const express = require('express');
const app = express();
const htms = require('server-htms');
app.use(htms)
app.get('/', (req, res) => {
res.htms('file/path.html')
})