dnalborczyk

Results 153 comments of dnalborczyk

I get the same results with node.js v18, M1: ``` esm x 144,790,240 ops/sec ±0.18% (96 runs sampled) cjs x 388,853,065 ops/sec ±0.14% (100 runs sampled) ``` what's interesting is...

@JLHwung I expected that this might have something to do with live bindings. I wonder if v8 is even aware of any modules, since it's my impression that modules (esm)...

> And see how those compare. @GeoffreyBooth I think that's what we did above, although it might be not easy to see. curious, do live bindings apply to imported cjs...

aws lambdas don't support synchronous function execution for handlers. you have to wrap your return value in a Promise, use an async function, or use the callback. if there is...

thanks for sharing @ruswerner ! the docs are indeed a little inconclusive.

thank you @murgatroid99 I'll have a repro repo up in a bit. the exception is not being thrown when one switches out the client to use the native _deprecated_ `grpc`...

@castarco https://grpc.github.io/grpc/core/md_doc_statuscodes.html

I'm trying to think where to start, there's a lot to unpack. that makes it even harder not knowing how much knowledge you have about the tooling involved. it would...

> that made me realise that I had forgotten to add express to the externals in the rollup config. So I did and reverted back to using a regular import...

> Ah sorry, missed that this is a draft PR no worries. yeah, it's not quite there yet. the build currently works, if one kicks off `node ./scripts/generate-help-module.js` manually. it's...