I am using express on a nodejs platform and serve my javascript library files using this directive
app.use('/static', express.static(__dirname + '/static'))
Now I want to be able to write something like that, inside one of these static files
[..] var host = <%= host %> [..]
Is there any possibility to expand variables inside statically served files?