我是angularjs或Node js的初学者。对不起愚蠢的问题。目前我已使用命令ng new appname
进行应用程序。我想在heroku上传它。因为我得到了帮助并编写了server.js文件。在这里。
var express = require('express');
var app = express();
// set the port of our application
// process.env.PORT lets the port be set by Heroku
var port = process.env.PORT || 8080;
// set the view engine to ejs
app.set('src engine', 'ejs');
// make express look in the public directory for assets (css/js/img)
app.use(express.static(__dirname + '/about'));
// set the home page route
app.get('/', function(req, res) {
// ejs render automatically looks in the views folder
res.render('index');
});
app.listen(port, function() {
console.log('Our app is running on http://localhost:' + port);
});
搜索views文件夹并从该文件夹运行index.ejs文件。但我想运行/src/index.html文件。 任何人都可以帮助我,我怎么能运行它?我浪费了一整天的时间。拜托...我会感谢这种善意。