Helpers for Node.js addons and dependency packages
Go to file
Luis Blanco b532ca47bf Update dependencies 2023-01-02 17:09:33 +04:00
.github/workflows Add aarch64 2022-12-24 17:10:35 +04:00
.vscode Update dependencies 2023-01-02 17:09:33 +04:00
doc Update dependencies 2023-01-02 17:09:33 +04:00
include Update dependencies 2023-01-02 17:09:33 +04:00
test Update dependencies 2023-01-02 17:09:33 +04:00
.eslintrc Update info 2022-12-05 22:44:35 +04:00
.gitattributes Update deps 2022-09-24 19:02:48 +04:00
.gitignore Update deps 2022-09-24 19:02:48 +04:00
CPPLINT.cfg Update dependencies 2023-01-02 17:09:33 +04:00
LICENSE Update deps 2022-09-24 19:02:48 +04:00
README.md Update info 2022-12-05 22:44:35 +04:00
cpbin.d.ts Fix TS 2021-04-19 00:31:04 +03:00
cpbin.js Update header 2022-12-05 19:47:08 +04:00
download.d.ts Update deps 2022-09-24 19:02:48 +04:00
download.js Update header 2022-12-05 19:47:08 +04:00
index.d.ts Allow unknown platforms 2022-12-24 17:20:48 +04:00
index.js Fix platform names 2022-12-24 21:51:35 +04:00
install.d.ts Fix TS 2021-04-19 00:31:04 +03:00
install.js Update header 2022-12-05 19:47:08 +04:00
package-lock.json Update dependencies 2023-01-02 17:09:33 +04:00
package.json Update dependencies 2023-01-02 17:09:33 +04:00
utils.d.ts Fix TS 2021-04-19 00:31:04 +03:00
utils.js Update header 2022-12-05 19:47:08 +04:00
writable-buffer.d.ts Fix TS 2021-04-19 00:31:04 +03:00
writable-buffer.js Update header 2022-12-05 19:47:08 +04:00

README.md

Addon Tools

This is a part of Node3D project.

NPM CodeFactor

npm i addon-tools-raub

This module contains numerous helpers for Node.js NAPI addons and dependency packages. On this page, helper scripts are described. For details on addon-tools.hpp and some additional snippets follow the links below.

Docs:

index.js

NOTE: peer dependency node-addon-api is required for this helper.

Main exports for cross-platform addon configuration. See TypeScript definitions with comments.

download.js

Downloads a file into the memory, HTTP or HTTPS. See TypeScript definitions with comments.

cpbin.js

Downloads a file into the memory, HTTP or HTTPS. See TypeScript definitions with comments.

install.js

NOTE: peer dependency adm-zip is required for this helper.

Downloads and unzips the platform specific binary for the calling package. See TypeScript definitions with comments.

writable-buffer.js

A Writable stream buffer. See TypeScript definitions with comments.

utils.js

Async fs based helpers for common addon-related file operations. See TypeScript definitions with comments.