官方的 API 文档正式切换成 4.x 版本, 3.x已经成为过去. 这次4.x 改版升级的东西可不少呦. 去掉了对 connect的依赖. 需要的中间件需要自己手动添加到 package.json 中
- 移除 app.configure()
- 移除 app.router
- 移除 express.createServer(): 使用 use express() 替代
- public API for the Router
关于迁移注意事项可以参看这里 Migrating from 3.x to 4.x 这个切换操作不会太复杂
4.x 相对于之前版本还有不小的性能提升
- response times dropped by 20%
- memory consumption dropped by 10%
关于更详细的升级信息参看这里: http://n.thepana.com/2014/02/25/express-upgrade/
10 回复