Running V8 Javascript Engine Standalone

前端 未结 9 1841
悲&欢浪女
悲&欢浪女 2020-11-27 09:05

I want to run a Javascript console on top of V8. How do I do this?

相关标签:
9条回答
  • 2020-11-27 09:30

    To build the developer console, rather than the example 'shell' toy application, copy-paste the below commands to your terminal.

    sudo apt-get install subversion scons libreadline-dev
    svn co http://v8.googlecode.com/svn/trunk v8
    cd v8/
    scons console=readline d8
    

    These instruction will work for Ubuntu/Debian with a "generic" kernel. For other distributions, you will need to replace the apt-get command with whatever package tool you have available. On 64-bit systems you may need to add arch=x64. The console=readline option enables the readline system, to make it feel a bit more like a standard shell.

    More complete documentation here: http://code.google.com/apis/v8/build.html


    Note:

    enter image description here

    See also: Building v8 with GYP

    0 讨论(0)
  • 2020-11-27 09:33

    How about running V8 Javascript via command line using node.js?

    node.js uses v8 as it's engine and adds a lot of functionality on top of it.


    For example on Mac OSX if you have Homebrew installed, simply issue:

        $ brew install node
        $ node
        > 
    
    0 讨论(0)
  • 2020-11-27 09:42

    On Mac OS X be sure to have brew installed. Then just run the command (sudo) brew install v8, depending on your machine this may take some time. To start the V8 console, just run v8 - Voilà!

    Tip: To quit the console, just run quit() and dont forget the parentheses!

    0 讨论(0)
  • 2020-11-27 09:50

    After following the build instructions (Google's V8 Build Docs) for your system;

    [v8 directory]$ cd out/native
    [v8 directory]$ ./shell (sample shell)
    [v8 directory]$ ./d8 (console: dumb)
    

    I created an alias in my .bash_profile to facilitate invocation of the shell.

    alias v8='/Volumes/Dev/GitHub/v8/out/native/shell'
    

    Typing v8 at the CLI (in a new Terminal or shell -- to reload your bash profile) yields the v8 shell. JavaScript at the command prompt! :)

    0 讨论(0)
  • 2020-11-27 09:51

    V8 is easy to build and does not come with the Java VM overhead from Mozilla's standalone Javascript interpreter. Luckily, V8 ships with code for building a console. Here is how to build this:

    $> svn co http://v8.googlecode.com/svn/trunk v8-trunk
    ...
    $> cd v8-trunk
    $> scons
    $> g++ ./samples/shell.cc -o v8-shell -I include libv8.a 
    

    Now, we have a standalone binary called v8-shell.

    Running the console:

    $> ./v8-shell 
    V8 version 2.0.2
    > var x = 10;
    > x
    10
    > function foo(x) { return x * x; }
    > foo
    function foo(x) { return x * x; }
    > quit()
    

    Executing Javascript from the command line:

    $> ./v8-shell -e 'print("10*10 = " + 10*10)'
    10*10 = 100
    

    Many more features are documented in the help:

    $> ./v8-shell --help
    Usage:
    ...
    
    0 讨论(0)
  • 2020-11-27 09:52

    If you're planning to embed V8, then by all means build it and play with "d8".

    If on the other hand, you do not plan to extend V8 or treat it as optional, then just use Node.JS. Don't bother with pure V8.

    Node.js has truly rich I/O, extensions, libraries (like Perl CPAN, Python Eggs, Ruby Gems), and community.

    0 讨论(0)
提交回复
热议问题