Hage Yaapa
Hage Yaapa
The interface `app.set(, )` feels a odd for setting values in a JavaScript framework. Also, its counterpart `app.get()` is a confusing twin of `app.get(path, callback [, callback ...])`, which is...
Complete the implementation of `migrateSchema()` in `TypeOrmMixin` to enable database migration in apps using TypeORM.
Add support for creating custom TypeORM repositories with custom methods (e.g. to implement bookRepo.findByTitle(title)) and other functionalities.
Support LoopBack-style filters consumable by TypeORM repository methods.
Currently `@loopback/typeorm` generates a simple and limited JSON/OpenAPI schema for TypeORM entities, it should be 100% at par with the schema generated for Juggler models.
Currently `@loopback/typeorm` supports only `number`, `string`, and `boolean`. Other TypeORM column types like `int`, `text`, etc should be supported. The complete list can be found at https://github.com/typeorm/typeorm/blob/master/docs/entities.md#column-types.
To address issues such as #779.
@bajtos [suggested to provide strongly typed context types based on the hook name](https://github.com/strongloop/loopback-datasource-juggler/pull/1820#discussion_r383908186). For example: ```ts export interface AccessHookContext { Model: T; query: Filter; } export type Listener = (ctx:...
The following events were added: 1. `handlestart` - emitted when the router starts to handle the router stack. 2. `layer` - emitted when a layer is matched by the router....
The single stack middleware system of express seems to be a source of confusion for [some developers](https://github.com/expressjs/express/issues/2760). This is a proposal to isolate the middleware stack in a router from...