I am looking for a command line tool what can be used to run javascript code in html and generate a html file without javascript.
Looking into Google V8 and Mozzila SpiderMonkey, those are good for running the Javascript but they do not have the proper environment (document, etc.).
Is there any tool what can be invoked in a way that I feed in the html containing for example:
<html>
<script type="text/javascript">document.write("test");</script>
</html>
returns:
<html>
test
</html>
?
Last edited by luftwaffe; March 7th, 2013 at 01:49 PM.
You could create any type of script to parse out the <script> tags through regular expressions. Install PHP on the local machine and run scripts through the command line.
Bookmarks