This repository has been archived by the owner on Oct 30, 2018. It is now read-only.
0.4.6
We encourage everyone who wants to experience the latest features and bugfixes to upgrade to this new release! Our dist-tag mojito@latest
was moved to this release, while mojito@stable
still refers to 0.3.30.
Notes
All performance regressions will be addressed in an upcoming release. Please see DEPRECATIONS.md.
Backward Compatibility Changes
As of this release, Mojito has changed the way the application boots up. Update the file server.js
that is at the root dir of your application. Here is an example:
var Mojito = require('mojito');
var app = Mojito.createServer({
context: {}
});
// Mojito 0.4 and 0.5 compatibility...
module.exports = app.start ? app.start() : app;
Features
- #265 Mojito can now be started using the standard node command.
Fixes
None.
Acknowledgements
Special thanks to @FabianFrank for his contributions to this release!