ExpressJS - Serving static files tutorial point code example
Example 1: use static with expres
app.use(express.static('directoryName'))
#store the files in the directory as if you were making a website without express
Example 2: how to set multiple static paths in node ejs
app.use(express.static('public'))
app.use(express.static('files'))