Skip to content

Instantly share code, notes, and snippets.

@ganeshkbhat
Last active October 4, 2018 05:48
Show Gist options
  • Save ganeshkbhat/8f2bfc4a405dc31ace963e8b58adc906 to your computer and use it in GitHub Desktop.
Save ganeshkbhat/8f2bfc4a405dc31ace963e8b58adc906 to your computer and use it in GitHub Desktop.
ExpressJS Series: Serving static ffile
const path = require('path');
/* ALL OTHER CODE */
// Serves index.html from the public folder when ...
// ... the client requests http://127.0.0.1:9001/
app.get("/", function(req, res) {
res.status(200)
.sendFile(path.join(__dirname, 'public', 'index.html'));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment