sjitech / nodejs-android-prebuilt-binaries

Prebuilt binaries of NodeJS for Android(arm,arm64,x86,x64,mipsel), full or limited(by --without-snapshot --without-inspector --without-intl)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

nodejs-android-prebuilt-binaries

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 binaries
  • include: some C/C++ include files
  • lib: node_modules
  • share: 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
│           ├── ...

About

Prebuilt binaries of NodeJS for Android(arm,arm64,x86,x64,mipsel), full or limited(by --without-snapshot --without-inspector --without-intl)

License:MIT License