V8 is a JavaScript engine. I don't know what exactly you mean by "web runtime".
V8 implements the ECMAScript specification: http://www.ecma-international.org/publications/standards/Ecma-262.htm Note that some things that are commonly considered to be part of JavaScript, such as DOM bindings etc., are implemented by the embedder, such as Chrome. For V8's internal architecture, there's some information on the project website v8.googlecode.com. That's mostly high-level overviews, the details of the architecture are in the code (which you can also browse on that site). The API for embedders is defined in http://code.google.com/p/v8/source/browse/trunk/include/v8.h. For a simple example of an application embedding V8, look at samples/shell.cc. On Thu, May 31, 2012 at 12:20 PM, andrea simeoni <[email protected]>wrote: > Thank you for responding Jakob, can you please provide me a reference to a > good analisys of the v8 WebRT (Architecture, functionalities, APIs etc)? > Thank you so much, > > BR, > > -- > Andrea > > 2012/5/29 Jakob Kummerow <[email protected]> > >> You're probably looking for Chrome's WebRequest extension API [1]. This >> is a feature of Chrome, not of V8. >> >> [1] http://code.google.com/chrome/extensions/webRequest.html >> >> >> On Mon, May 28, 2012 at 11:35 AM, insanediv <[email protected]>wrote: >> >>> >>> Hello guys, >>> >>> Is it possible to intercept when the browser opens a connection (i.e., >>> on a URL)? I'm wishing to keep track of all connections opened in my web >>> runtime. Is it possible with V8? >>> >>> regards. >>> >>> -- v8-users mailing list [email protected] http://groups.google.com/group/v8-users
