Skip to content

Instantly share code, notes, and snippets.

@bajtos
Created September 18, 2020 14:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bajtos/8cf2378713ffb0fe9433c35b94f8d9c9 to your computer and use it in GitHub Desktop.
Save bajtos/8cf2378713ffb0fe9433c35b94f8d9c9 to your computer and use it in GitHub Desktop.
Random ideas for LoopBack

Ideas I discovered on the internet but don't have time to pursue.

Run todo-example tests against PostgreSQL

Contribute LoopBack monorepo definition to RenovateBot

Hot Module Replacement

Danger systems

A better app.route API:

app.route({
  @intercept('log')
  @get('/foo/bar')
  @response(...)
  async handle(
    @param.path() id: number,
    @inject.getter('current-user', {optional: true})
    currentUser?: UserProfile,
  ) {
    // ...
  }
})

https://docs.pact.io for consumer contract testing - perhaps replace http-service-proxy?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment