CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3

Threaded View

  1. #1
    Join Date
    May 2002
    Location
    Germany
    Posts
    451

    Javascript to html in command line

    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 02:49 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured