How to use express static code example
Example 1: express img folder
app.use(express.static('public'))
Example 2: how to use static file node js
app.use('/static', express.static(path.join(__dirname, 'public')))
Example 3: 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 4: how to use static file node js
app.use('/static', express.static('public'))