nodejs-android-prebuilt-binaries icon indicating copy to clipboard operation
nodejs-android-prebuilt-binaries copied to clipboard

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

Results 3 nodejs-android-prebuilt-binaries issues
Sort by recently updated
recently updated
newest added

Plz build nodejs 10 and npm 6 for android. Thanks for the great repository!

I tried a simple http server example: ``` var http = require('http'); function fn(eq, res){ res.writeHead(200, {'Content-Type': 'text/html'}); res.write(req.url); res.end(); } var server=http.createServer(fn); server.listen(8000); ``` It gives the error: ```...