Skip to content

Instantly share code, notes, and snippets.

@agawish
Last active May 3, 2017 12:46
Show Gist options
  • Save agawish/7bdab889786a1e2bedad96afbc1519e9 to your computer and use it in GitHub Desktop.
Save agawish/7bdab889786a1e2bedad96afbc1519e9 to your computer and use it in GitHub Desktop.
Extending bot functionality to serve a public webpage
//Express
let express = require('express');
let app = express();
app.use(express.static('public'))
app.get('/', function(req, res){
res.sendFile('public/index.html', { root : __dirname});
});
app.listen(process.env.PORT || 9000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment