express static options code example
Example 1: express static
app.use(express.static('public'));
Example 2: express public
app.use(express.static(__dirname + '/public'));
Example 3: express img folder
app.use(express.static('public'))
Example 4: express serve static
app.use('/static', express.static(__dirname + '/public'));
Example 5: 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 6: static file
Static file is any content that can be delivered to an end user without
having to be generated, modified, or processed.