Run NodeJs server in Android

你。 提交于 2019-12-03 06:50:21

You might want to install a chrooted-linux on your android-device, as explained here.

In short, do this:

  1. prepare linux-image
    1. do this on any gnu+linux -device.
    2. create a big file (>1 GB)
    3. format it as a filesystem (eg. ext2)
    4. mount it.
    5. copy a distribution inside of it (e.g. with debootstrap)
  2. copy loopdevice to android
  3. mount it (root required)
    1. maybe install busybox
    2. attach some directories from the root-device to the host (usually dev, dev/pts, proc and sys )
  4. chroot
  5. install nodejs inside chroot

note: I have done something similar to my tf301 and it works like a charm. But when I start to use too much memory inside the chroot (e.g. when compiling an android-app), the host will crash. I have not yet experienced those crashes with node and I do not know, if other devices are affected by this.

Install jxcore, as explained here:

Express on Android

The script assumes that Apache Cordova and the Android SDK is installed on your system. If they are not, please refer to individual documentation on how to do this.

Plug an android device into a USB socket (with USB Debugging enabled), unless you want to run the application on the Android Emulator.

Download the script and save it into an empty folder. Run it with a sample folder name as an argument, for example “express sample”:

$ ./install_and_run.sh "express sample"

The Script can be found here.

J2V8 is best solution of your problem. It's run Nodejs application on jvm(java and android).

J2V8 is Java Bindings for V8, But Node.js integration is available in J2V8 (version 4.4.0)

Github : https://github.com/eclipsesource/J2V8

Example : http://eclipsesource.com/blogs/2016/07/20/running-node-js-on-the-jvm/

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!