0

我想使用 connect 的 vhost 功能将几个 express.js 应用程序部署到我的 dev vps。这是我的 server.js 文件,它应该将请求发送到适当的位置:

var express = require('express')
var quotes = require('quote-of-the-day/lib/app.js');    
var server = express();  
server.use(express.vhost('inspiringquoteoftheday.com',quotes));    
server.listen(80);

运行 node server.js 会抛出这个错误:

Error: Cannot find module 'quote-of-the-day/lib/app.js' 

即使我可以直接从 server.js 所在的目录 cd 进入 app.js 。

这是我导出快速应用程序的 lib/app.js 文件(我认为)

// Generated by CoffeeScript 1.3.3
(function() {
  var app, express, pub;

  express = require('express');

  module.exports = app = express();

  pub = __dirname + '/public';

  app.use(express["static"](pub));

  app.use(express.errorHandler());

  app.use(app.router);

  app.set('views', __dirname + '/views');

  app.set('view engine', 'jade');

  app.get('/', function(req, res) {
    return res.render('home');
  });

}).call(this);
4

2 回答 2

0

在这里使用 __dirname 全局变量可能会有所帮助。它提供了“当前执行脚本所在目录的名称。” 因此你可以这样做:

var otherApp = require(__dirname + 'quote-of-the-day/lib/app.js')

http://nodejs.org/docs/latest/api/globals.html

于 2012-11-01T20:15:54.187 回答
0

假设一个目录结构看起来像这样:

|-. quote-of-the-day
  |-- server.js <-- the file you list in your question
  |-. lib
    |-- app.js

那么你应该要求你的app.jswith

require('./lib/app');
于 2012-09-08T01:33:52.463 回答