如何从明确

时间:2015-07-24 10:30:22

标签: express

我有一个演示应用程序,我只希望能够从根服务,所以我可以从index.html文件链接的节点模块提供文件

var express = require('express');
var app = express();

app.get('/', function(req, res) {
  res.render('index.html', { title: 'Express' });
});
app.listen(3000); //the port you want to use

结构

  index.html
  /node_modules

我知道我可以使用

如果我使用app.use(express.static(__dirname + '/public'));

但我不想将资产从node_modules

复制到该文件夹​​中

1 个答案:

答案 0 :(得分:1)

如果要提供与 UIPopoverController *popC = [[UIPopoverController alloc] initWithContentViewController:TestingPC]; [[[popC contentViewController] view] setBackgroundColor:[UIColor blackcolor]]; 文件位于同一目录中的静态资源,可以使用:

app.js

app.use(express.static(__dirname)) 指的是当前运行的脚本{在这种情况下为__dirname所在的目录)