Express v1.0.0rc4 Release Notes

Release Date: 2010-10-14 // over 13 years ago
    • Added NODE_ENV support, EXPRESS_ENV is deprecated and will be removed in 1.0.0
    • Added route-middleware support (very helpful, see the docs)
    • Added jsonp callback setting to enable/disable jsonp autowrapping [Dav Glass]
    • Added callback query check on response.send to autowrap JSON objects for simple webservice implementations [Dav Glass]
    • Added partial() support for array-like collections. Closes #434
    • Added support for swappable querystring parsers
    • Added session usage docs. Closes #443
    • Added dynamic helper caching. Closes #439 [suggested by maritz]
    • Added authentication example
    • Added basic Range support to res.sendfile() (and res.download() etc)
    • Changed; express(1) generated app using 2 spaces instead of 4
    • Default env to "development" again [aheckmann]
    • Removed context option is no more, use "scope"
    • Fixed; exposing ./support libs to examples so they can run without installs
    • Fixed mvc example