Adonis 3.0 dev release
Adonis 3.0 is going to be the most stable release so far. In past few months, we have gathered plenty of feedback, solved a handful of issues and progressively made Adonis the most practical framework in the community.
The newer version is going to have breaking changes and this dev release is a sneak peek of same. If you are planning to start a new project, consider using the dev release as it is going to be the future.
Setting up dev project
You can make use of adonis-cli
to setup the dev project, but make sure to pass the --dev
flag.
adonis new yardstick --dev
What’s new?
Lots of new features have been added to the framework that I will be talking about, also trello board can be used as a reference for same https://trello.com/b/yzpqCgdl/adonis-for-humans.
Model Hooks
Model hooks have been introduced to keep your code DRY by attaching hooks to your models, which are called on...