Skip to content

Complete CRUD, async/await, serializers, test separation and bump Node version

Compare
Choose a tag to compare
@talyssonoc talyssonoc released this 07 Oct 03:46

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.