B
B
BranchInCode2021-03-22 21:47:02
Express.js
BranchInCode, 2021-03-22 21:47:02

In Express.js, adding/displaying information is only done by templates?

I can't find information about adding/displaying information to existing html code, everyone uses templating engines: pug, hbs, ejs

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
Alexander Talalaev, 2021-03-22
@neuotq

A little unclear what do you want? Templates are used in order to have interactivity in them, with variables and so on.
If you just want to give html as static, you can use static , an example from the documentation (let's say you threw files into the public folder): And after that you can open html at the direct address (site.com/public/test.html). Or use sendFile , they can send any files: pdf, picture, etc., including html. Let's imagine that you have a static folder and there is an html file.
app.use(express.static('public'));

var express = require('express');
var app = express();
var path = require('path');
app.use(express.static(__dirname + '/static'));

// viewed at http://localhost:8080
app.get('/', function(req, res) {
  res.sendFile(path.join(__dirname + '/static/test.html'));
});
app.listen(8080);

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question