Answers for "serving static files in node js"

1

access to static file nodejs

app.use(express.static(__dirname + '/public'));
<link rel="stylesheet" type="text/css" href="css/style.css" />
Posted by: Guest on May-14-2020
1

app.use public

app.use(express.static('public'))
app.use(express.static('files'))
Posted by: Guest on April-02-2020

Code answers related to "serving static files in node js"

Browse Popular Code Answers by Language