Answers for "Cannot find module 'html'"

0

Cannot find module 'html'

// npm install path ejs
app.set('view engine', 'html');
app.engine('html', require('ejs').renderFile);
app.use(express.static(path.join(__dirname, 'public')));
Posted by: Guest on March-04-2022
0

Error: Cannot find module 'html'

app.configure(function () {
    app.use(express.static(path.join(__dirname, 'public')));
});
Posted by: Guest on December-24-2021

Code answers related to "Cannot find module 'html'"

Code answers related to "Javascript"

Browse Popular Code Answers by Language