Prebuilt binaries of NodeJS for android(arm,arm64,x86,x64,mipsel), full or limited(by --without-snapshot --without-inspector --without-intl)
These binaries are prebuilt on Linux docker container, see Build Nodejs For Android Perfectly.
Before v9.11.0, each dir has an all.7z
which contains full install files:
bin
: node npm(just a symbol link)extras
: cctest openssl-cli and some host binariesinclude
: some C/C++ include fileslib
: node_modulesshare
: manual
From v9.11.0, the binaries are 7z compressed into a file named
nodejs-$VERSION-android-$ARCH-full.7z
which contains following files:
├── bin
│ ├── node
│ ├── npm -> ../lib/node_modules/npm/bin/npm-cli.js
│ └── npx -> ../lib/node_modules/npm/bin/npx-cli.js
├── include
│ └── node
│ ├── *.h
│ ├── ...
├── lib
│ └── node_modules
│ └── npm```
│ ├── ...
├── share
│ ├── doc
│ │ └── node
│ │ ├── ...
│ ├── man
│ │ └── man1
│ │ ├── ...
│ └── systemtap
│ └── tapset
│ ├── ...