admin管理员组

文章数量:1350935

I am trying to understand how vhost actually works in Express JS. Here's a working code sample (forgot where I pulled this from):

// -- inside index.js --
var EXPRESS = require('express');
var app = EXPRESS.createServer();

app.use(EXPRESS.vhost('dev.example', require('./dev').app));

app.listen(8080);


// -- inside dev.js --
var EXPRESS = require('express');
var app = exports.app = EXPRESS.createServer();

app.get('/', function(req, res)
{
    // Handle request...
});

Now, my question is, why do we call createServer() twice? Why does this even work? Is vhost internally "merging" the two servers together?

I am trying to understand how vhost actually works in Express JS. Here's a working code sample (forgot where I pulled this from):

// -- inside index.js --
var EXPRESS = require('express');
var app = EXPRESS.createServer();

app.use(EXPRESS.vhost('dev.example.', require('./dev').app));

app.listen(8080);


// -- inside dev.js --
var EXPRESS = require('express');
var app = exports.app = EXPRESS.createServer();

app.get('/', function(req, res)
{
    // Handle request...
});

Now, my question is, why do we call createServer() twice? Why does this even work? Is vhost internally "merging" the two servers together?

Share Improve this question asked Mar 3, 2012 at 20:56 pixelfreakpixelfreak 17.9k12 gold badges92 silver badges110 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 10

Node.js is event-driven, and when a request es in, the request event is raised on a http.Server. So basically, express.vhost (or really, connect.vhost) is a middleware function which raises the request event on another instance of a http.Server:

function vhost(req, res, next){
    if (!req.headers.host) return next();
    var host = req.headers.host.split(':')[0];
    if (req.subdomains = regexp.exec(host)) {
      req.subdomains = req.subdomains[0].split('.').slice(0, -1);
      server.emit('request', req, res);
    } else {
      next();
    }
  };

本文标签: javascriptUnderstanding vhost in Express NodejsStack Overflow