This is interesting, but why was such an old version of v8 picked? Yes, I see that nodejs v0.10.x uses this version. It is also an essentially unsupported API (per v8) as well. What's more, you'll also have to "re-port" your work to 3.24.x+ APIs now that v0.12 is imminent.
On Fri, Jan 30, 2015 at 3:00 PM, Isaac Burns <[email protected]> wrote: > Posting here just in case anyone else is interested... > > I've started a project to add a V8 API to JavaScriptCore. (Currently 3.14, > the version used by node.js 0.10) > > https://github.com/flyover/v8like/tree/3.14 > > I've also created a fork of the node.js project with patches applied for > building for iOS and OS X using both the V8 simulator and v8like. > (Currently 0.10.36, the latest stable version of node.js) > > https://github.com/flyover/node/tree/v0.10.36-release > > There is also an Android/iOS project that uses Cordova to interface with > these projects using the Ace editor as a GUI. > > https://github.com/flyover/nodegap > > There is a hack for accessing typed arrays by wrapping node's Buffer class > in a native object. This could, most likely, be removed if a typed array > API is ever added to JavaScriptCore. > > I've been bugging the WebKit team for this. > > https://bugs.webkit.org/show_bug.cgi?id=120112 > > There's also still a bug where node Buffer's are not being garbage > collected. This could either be something to do with the native object > hack, something with the v8::Persistent implementation, or something > completely different. > > I appreciate any feedback on the projects. > > -- > -- > v8-users mailing list > [email protected] > http://groups.google.com/group/v8-users > --- > You received this message because you are subscribed to the Google Groups > "v8-users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/d/optout. -- -- v8-users mailing list [email protected] http://groups.google.com/group/v8-users --- You received this message because you are subscribed to the Google Groups "v8-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
