Complete CRUD, async/await, serializers, test separation and bump Node version
Added:
- The boilerplate example app now implements all the actions for the user CRUD;
- Instead of using
.then()
/.catch()
for handling promises now it uses ES8's async/await; - Serializers are now used to generate the JSON response in the controllers.
Breaking changes:
- This version depends on Node v7.6.0 or later because of async/await;
- Tests are now separate into unit and features tests.