Skip to content

Instantly share code, notes, and snippets.

@blubbll
Created September 19, 2018 21:22
Show Gist options
  • Save blubbll/826a94e8b2238c5f9e30994a297adb63 to your computer and use it in GitHub Desktop.
Save blubbll/826a94e8b2238c5f9e30994a297adb63 to your computer and use it in GitHub Desktop.
nodejs
//public files
app.get('/*', function (req, res) {
if(typeof req.params[0] !== 'undefined')
res.sendFile(`public/${req.params[0]}`, { root: '.' });
})
or simply
app.use(express.static('public'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment