C function to get the current libuv event loop for N-API
npm install @napi-ffi/get-uv-event-loop-napi-h@napi-ffi/get-uv-event-loop-napi-h
===================================



> Forked from node-ffi-napi/get-uv-event-loop-napi-h to maintain and modernize the project while preserving the original APIs.
Installation
------------
Install with npm:
`` bash`
$ npm install @napi-ffi/get-uv-event-loop-napi-h
Usage
-----
In your binding.gyp:
`python`
'include_dirs': ["
(Just have " somewhere in that list, ok?)
In your C code:
`c
#include
uv_loop_t* loop = get_uv_event_loop(env);
``