make assets in node js express code example
Example 1: app.use public
app.use(express.static('public'))
app.use(express.static('files'))
Example 2: 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 3: app.use public
express.static(root, [options])