Embed JavascriptCore in C Application

I am trying to find information on how to embed JavascriptCore in project C. It is easy to find guides for both V8 and SpiderMonkey, but it is almost impossible to find for AO. Does anyone know where to look?

I would prefer not to embed V8 like this C ++, and I heard that the SpiderMonkey API was terrible.

+4
source share
1 answer

This link for the JavaScriptCore webpage says that JavaScriptCore is part of WebKit. Here is the link to the JavaScriptCore page on the WebKit website .

This webkit wikipedia topic mentions a story, including some JavaScriptCore information.

Here are some of Apple's web recruitment information . And here's an article on new developments with WebKit Javascript .

And it looks like information for webkit with Android .

And here is the test engine, SunSpider JavaScript Test .

And you can find this slideshow, "Hacking Webkit and its JavaScript engines . "

+2
source

All Articles