Is it possible to run a Java file from a node application, and get the response of it? For example something as simple as:
package com.app;
public class App {
public static void main(String[] args) {
System.out.println('Hello World');
}
}
And I want to get the response Hello World