-
-
Save timoxley/2318250 to your computer and use it in GitHub Desktop.
flatiron ip address middleware
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var union = require('union'); | |
var flatiron = require('flatiron'); | |
var winston = require('winston'); | |
var ecstatic = require('ecstatic'); | |
app = new flatiron.App(); | |
app.use(flatiron.plugins.http); | |
app.http.before = [ | |
function (req, res) { | |
app.log.info("REQ - hello client" + req.socket.remoteAddress); | |
res.emit('next'); | |
}, | |
ecstatic(__dirname + '/../site') | |
]; | |
app.start(8081); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment