Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've just started to play around with Expressjs and I'm wondering how to pass variables to mounted middleware/sub application. In the following example, I'd like the config object passed to my /blog/index

in app.js

var express = require('express');
var app = express();
//...
var config = {}
//...
app.use('/blog', require('./blog/index')

in /blog/index.js

var express = require('express');
app = module.exports = express();

app.use(express.static(...
app.get('/', function(req, res, next) {
  //handle the req and res
}

Thanks,

share|improve this question

1 Answer

up vote 4 down vote accepted

I see two options here:

  1. Since your blog app is an express application, you can use app.set and app.get. E.g.

     blog = require('./blog/index');
     blog.set('var1', value1);
     blog.set('var2', value2); 
     ...
     app.use('/blog', blog);
    

    And in blog/index.js use app.get('var1') to get the value of var1.

  2. You can wrap the blog express application in another function that accepts configuration parameters (much like the static middleware accepts a directory name) and returns the configured application. Let me know if you want an example.

EDIT: Example for the 2nd option

app.js would look like this:

var blog = require('./blog/index');
...
var config = {};
app.use('/blog', blog(config));

and /blog/index.js like that:

var express = require('express')

module.exports = function(config) {
    var app = express();
    // configure the app and do some other stuffs here
    // ...

    return app;
}
share|improve this answer
Thanks for the answer, I'm now wondering why I haven't figured out the 1st option myself. Anyway, yes please if you can provide a short example for the option 2 that seems to look better. – Ludohen Jan 30 at 5:34
I've tried the 2nd option but I can't get it work. – Ludohen Jan 30 at 8:29
1  
It's now working with the 2nd option ... marvellous. Thanks again for your support. – Ludohen Jan 30 at 11:44
@Ludohen: Why don't you go ahead and edit the answer to add a short example for option #2? Or add another answer to your question. For future reference :) – nimrodm Jan 30 at 14:59

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.