直接使用http启动的node服务,如何记录后台的日志并保存到相应的一个文件中?
在项目中,node只是写些接口,通过http直接启动的服务,现在想要加入日志模块,来记录后台的实时日志,该怎么写呢?
服务启动代码: var http = require(‘http’); var server = http.createServer();
//服务监听request请求 server.on(‘request’,function(request, response){ //自己定义的函数 });
//服务监听2000端口 server.listen(2000); //启动日志输出 console.log(‘Server running at http://localhost:2000/’);