Hage Yaapa

Results 16 issues of 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...

enhancement

Complete the implementation of `migrateSchema()` in `TypeOrmMixin` to enable database migration in apps using TypeORM.

feature

Add support for creating custom TypeORM repositories with custom methods (e.g. to implement bookRepo.findByTitle(title)) and other functionalities.

feature

Support LoopBack-style filters consumable by TypeORM repository methods.

feature

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.

feature

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.

feature

@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:...

feature
developer-experience
good first issue

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....

ideas
pr

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...

ideas
discuss