I want to run a Javascript console on top of V8. How do I do this?
|
|
|
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 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: ... |
|||||||||||||||||||
|
|
To build the developer console, rather than the example 'shell' toy application, copy-paste the below commands to your terminal.
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 More complete documentation here: http://code.google.com/apis/v8/build.html Note:
See also: Building v8 with GYP |
|||||||||||||
|
|
On Mac OS X be sure to have Tip: To quit the console, just run |
|||||
|
|
How about running V8 Javascript via command line using nodeJS? For example on Mac OSX if you have Homebrew installed, simply issue:
|
||||
|
|
|
If you use ArchLinux, you can use |
||||
|
|
|
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. |
||||
|
|
|
After following the build instructions (Google's V8 Build Docs) for your system;
I created an alias in my .bash_profile to facilitate invocation of the 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! :) |
||||
|
|
|
I think this might have changed. I read the manual and build v8 like this:
added
(With javascript from aditsu and A-small-practice.in from Google Code Jam) |
||||
|
|
