Just starting to pick up node js, and I have a very basic question. Can someone please tell me what does /.*/ in the following line of code mean?
app.get(/.*/, express.static(__dirname + '/public'))
If I have 2 html files in the public directory, how should this code be if, say i want to serve myHome.html?
Thanks for help!