I write a simple program which is really unreadable. At first, I didn't know how to use template so I decide, in spite of that, to write html code inside my node.js code. (solved)
template to transform html code
130 Views Asked by fujitsu4 At
2
There are 2 best solutions below
0

I think your .ejs file is fine, this is a very minimal express server that works with your example:
app.js:
var express = require('express');
var app = express();
app.get('/', function (req, res) {
var customMessage = "My Message";
res.render('view.ejs', {msg:customMessage });
});
var server = app.listen(3000, function () {
var host = server.address().address;
var port = server.address().port;
console.log('Example app listening at http://%s:%s', host, port);
});
then use your view.ejs
and put it in the sub-folder views/
Try something like this
I usually have a project structure like:
In your package.json make sure you have included ejs
In app.js (assuming you use express)
And then in routes.js