我正在尝试使用console.log调试我的快速应用程序,但终端上没有任何输出。
app.js
:
var express = require("express"),
app = express(),
bodyParser = require("body-parser");
app.use(bodyParser.urlencoded({extended: true}))
app.set("view engine", "ejs");
app.get("/",function(req,res){
console.log("landing page");
res.send("landing page");
});
app.listen(3000,function(){
console.log("Server started!!")
});
输出:
$ node app.js
Server started!!