express serve static outside directory code example
Example 1: access to static file nodejs
app.use(express.static(__dirname + '/public'));
<link rel="stylesheet" type="text/css" href="css/style.css" />
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