// posix-node binaries should work across a very wide range of nodejs versions1// for their given architecture.2//3// "For an addon to remain ABI-compatible across Node.js major versions, it must use4// Node-API exclusively by restricting itself to using #include <node_api.h>."5//6// -- https://nodejs.org/api/n-api.html7//8// TODO: In https://nodejs.org/api/n-api.html#usage they explain that we can do something9// like "#define NAPI_VERSION 3" to ensure our code all works with a specific range10// of nodejs versions.1112pub usingnamespace @cImport({13@cInclude("node_api.h");14@cInclude("stdlib.h");15});161718