nodejs-android-prebuilt-binaries
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)
Plz build nodejs 10 and npm 6 for android. Thanks for the great repository!
Previous builds included them.
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: ```...