Using app.configure in express

后端 未结 1 1587
攒了一身酷
攒了一身酷 2020-12-12 23:20

I found some code where they set up Express without using app.configure and I was wondering, what\'s the difference between using app.configure wit

相关标签:
1条回答
  • 2020-12-12 23:46

    It is optional and remain for legacy reason, according to the doc. In your example, the two piece of codes have no difference at all. http://expressjs.com/api.html#app.configure

    Update 2015:

    @IlanFrumer points out that app.configure is removed in Express 4.x. If you followed some outdated tutorials and wondering why it didn't work, You should remove app.configure(function(){ ... }. Like this:

    var express = require('express');
    var app = express();
    
    app.use(...);
    app.use(...);
    
    app.get('/', function (req, res) {
        ...
    });
    
    0 讨论(0)
提交回复
热议问题