最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Understanding vhost in Express Node.js - Stack Overflow

programmeradmin0浏览0评论

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();
    }
  };
发布评论

评论列表(0)

  1. 暂无评论