Node.JS中的App.get()

时间:2013-05-09 14:17:48

标签: node.js express

使用express我们可以轻松调用函数get(),如:

var app = express();

app.get('/',function(req,res){
    // do stuff
})

node.js中的等价物是什么?那么如果没有表达我怎么能做同样的事呢?

1 个答案:

答案 0 :(得分:4)

我想这就是你可以做的事情

var http = require('http');
http.createServer(function (req, res) {
    if(req.method === 'GET' && req.path === '/'){
        // do stuff
    }
}).listen(8080, "127.0.0.1");