Pierantonio Cangianiello

Results 7 issues of Pierantonio Cangianiello

Read `target` and `module` options in `compilerOptions` when emitting Reflection.js. For example, there is no need to do environment checks like `typeof module == 'object' ...` if we are targeting...

enhancement

Implement dynamic class loading in `classForName`. We want to achieve something like this ``` TypeScript let clazz = Reflection.classForName("folder1.folder2.sourceFile#module1.MyClass"); let ctor = clazz.getConstructor(); let obj = new ctor(); ``` Note...

enhancement
help wanted
discussion

Remove common runtime parts from Reflection.js and make a new npm library `reflec-ts-runtime` that can be included as runtime dependency.

enhancement

It's a little bit old, but should still work: https://github.com/pcan/reflec-ts It's the only project that interacts with the ast in the early stages, so the reflection 'primitives' can be detected...

Implement a new high level "broker-like" server API, in order to handle receipts, transactions and subscriptions in a more user-friendly way, using a callback based contract.

enhancement

### Related Problems? _No response_ ### Describe the solution you'd like: We are currently using the @microlabs/otel-cf-workers library to enable open telemetry our CloudFlare workers. The configuration allows to specify...

enhancement
triage:todo

Currently the [`OAuthProviderImpl.handleClientRegistration`](https://github.com/cloudflare/workers-oauth-provider/blob/main/src/oauth-provider.ts#L1630) method does not provide any kind of authentication, thus letting _any_ client to register. In some cases, this may be a security issue if malicious clients present...