I want to invoke NODE JS from JAVA as below:
ProcessBuilder pb = new ProcessBuilder("swagger-to-raml-object","twitter-api-api-docsjson");
I am getting the following error:
CreateProcess error=2, The system cannot find the file specified
My path is properly set for Node js.
What is causing the issue?