Reputation: 20966
How to execute JavaScript file by ant and redirect stdout and stderr to files?
For example let say we have
helloWorld.js
console.log('Hello world!');
I need ant target to proudce
stdout.txt
Hello world!
It is acceptable to create temporary HTML file that include needed JavaScript file and then execute tmp.html, but I would like to omit this step if possible.
Upvotes: 2
Views: 554
Reputation: 55678
You can use Rhino to execute Javascript from ant. See this question or any of these questions for examples.
Upvotes: 1