Ecosyste.ms: Timeline

Browse the timeline of events for every public repo on GitHub. Data updated hourly from GH Archive.

aapoalas/denonomicon

audetto created a comment on an issue on aapoalas/denonomicon
It does not look like they support it. It is a fantastic new addition to `node-api` to call finalisers immediately as they are guaranteed not to interfere with the js environment. Often, the ...

View on GitHub

aapoalas created a comment on an issue on aapoalas/denonomicon
It's been declared stable for a good while so basically any version you might've downloaded recently. I do not know about sync finalizers.

View on GitHub

audetto created a comment on an issue on aapoalas/denonomicon
I did not know. That would be the easiest since I have already written it. Do you know which version? And in particular if it supports the new synchronous finalisers? Which are super good!

View on GitHub

aapoalas created a comment on an issue on aapoalas/denonomicon
Also just FYI, Deno does support N-API so you may want to consider that route if you're more familiar with it. Though, of course, I love FFI to death.

View on GitHub

aapoalas created a comment on an issue on aapoalas/denonomicon
Ah, you're absolutely correct that the GC isn't being informed here. I seem to have forgotten to do that binding here; this example was ... I don't quite remember but probably done as a quick aside...

View on GitHub

audetto opened an issue on aapoalas/denonomicon
Question about FFI and garbage collection.
I am trying to port a c++ library to deno and I am not clear on how gc with ffi buffers work. This is a great explanation of how ffi works, but I cannot understand the connection with gc. I s...