hypersend
v1.4.1
Published
an http wrapper for ssr
Downloads
1
Readme
Hypersend
Create HTTP Apps easier!
Use templating:
<h1>{{process.cwd()}}</h1>
and load with:
const hypersend = require('hypersend');
const app = hypersend.app();
app.get('/', (req, res) => {
res.send(hypersend.template('index.html'));
});