Answers for "node how to add static files"

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

how to use static file node js

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

Code answers related to "node how to add static files"

Browse Popular Code Answers by Language