Airic Yu
Airic Yu
The current way of swagger-inflector does not have security/authorization(e.g: API key) checking logic. If my application's web services have to use API key security check, I have to add the...
Using CLS with Mongoose is broken inside query callback function. The context is lost. sample: ``` console.log("### outside mongoose query", ns.get("foo")); SomeMongooseModel.find(query, function(err, obj){ console.log("### inside mongoose query", ns.get("foo")); });...
current implementation of this method is: factory ByteArray.u64(int value) => _encodeBigIntAsUnsigned(BigInt.from(value), 8); if value is larger than 2^63, it may have overflow problem. may better provide a method to pass...