如何在网上打印模块

时间:2015-07-14 08:01:48

标签: javascript node.js



var http = require('http');

function start() {
function onRequest(req, res) {
    console.log("Request received.");
    res.writeHead(200, {'Content-Type': 'text/plain'});
    res.end();
}

http.createServer(onRequest).listen(8888);
console.log("Server has started.");
}
exports.start = start;

var procfs = require('procfs-stats');
var ps = procfs(process.pid);

function sysUsage() {
    ps.io(function(err, io) {
        console.log('My process has done this much io', io);
    });
}
exports.sysUsage = sysUsage;




这是我的代码,我是Node.js的新手 我该如何打印" procfs-stats"和" libCpuUsage"在网络上?,而不是在控制台中。 感谢

1 个答案:

答案 0 :(得分:0)

你需要一个模板引擎,有很多(http://garann.github.io/template-chooser/),常见的是:

但是您可以选择自己喜欢的Node应用程序。

对您而言最好的选择可能是在您的Node.js应用中安装和使用ExpressJS framework,它为您提供了一套功能强大的功能,可以在您的应用中使用。 当然,它也为您提供了一种添加模板引擎的简单方法。

请参考以下具体需求:Using template engines with Express