Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jjqq2013 committed Apr 13, 2018
1 parent 6a766a3 commit 712fd6a
Showing 1 changed file with 30 additions and 1 deletion.
31 changes: 30 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,38 @@ Prebuilt binaries of NodeJS for android(arm,arm64,x86,x64,mipsel), full or limit

These binaries are prebuilt on Linux docker container, see [Build Nodejs For Android Perfectly](https://github.com/sjitech/build-nodejs-for-android).

Each dir has an `all.7z` which contains full install files:
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
│   ├── ...

0 comments on commit 712fd6a

Please sign in to comment.