how to server static files nodejs code example
Example 1: how to use static file node js
app.use('/static', express.static(path.join(__dirname, 'public')))
Example 2: how to set multiple static paths in node ejs
app.use(express.static('public'))
app.use(express.static('files'))