我有以下get方法的快捷代码:
var express = require('express');
var app = express();
app.get('/', function(req, res) {
res.sendFile(path.join(__dirname, '../public/index.html'));
});
app.listen(3000);
我想要这段代码:
答案 0 :(得分:1)
您想要使用http请求获取远程js文件:请参阅the doc。
然后,您希望使用模板引擎将文件内容插入index.html
(必须准备好模板化),请参阅express doc about template engines。