install without electron #2408
-
Hi. Can this be run on any server (e.g. node.js) like a normal web application, without any server and electron dependencies? I would like to setup this application in termux with node.js |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 3 replies
-
Like a normal web application without a server? How does that work? All web applications are served from a server. |
Beta Was this translation helpful? Give feedback.
-
Serving from local filesystem will block XHR calls. |
Beta Was this translation helpful? Give feedback.
-
Yes, I managed to run it on node.js server. Only some files are not found, since they are requested, for example, along the path |
Beta Was this translation helpful? Give feedback.
-
~/tomcat/bin $ chmod 777 catalina.sh
~/tomcat/bin $ sh startup.sh
Using CATALINA_BASE: /home/tomcat
Using CATALINA_HOME: /home/tomcat
Using CATALINA_TMPDIR: /home/tomcat/temp
Using JRE_HOME: /data/data/com.termux/files/usr
Using CLASSPATH: /home/tomcat/bin/bootstrap.jar:/home/tomcat/bin/tomcat-juli.jar
Using CATALINA_OPTS:
Tomcat started.
~/tomcat/bin $ |
Beta Was this translation helpful? Give feedback.
Yes, I managed to run it on node.js server. Only some files are not found, since they are requested, for example, along the path
/images/android-chrome-196x196.png
, and not, for example,/drawio/images/google-drive-logo.svg
.By "regular server-independent web application" I mean a static web application where the server only serves static files.
Thanks to all!