Duktape: an embeddable JavaScript engine
duktape.org
Duktape: an embeddable JavaScript engine
1–10 of 44 posts
Re: Duktape: an embeddable JavaScript engine
#2Re: Duktape: an embeddable JavaScript engine
#3Re: Duktape: an embeddable JavaScript engine
#4What is the advantage of something like this? (Not trying to be cynical, I just have no idea).
Re: Duktape: an embeddable JavaScript engine
#5Re: Duktape: an embeddable JavaScript engine
#6Here are some related projects I saved links to. I think there were a few others.
http://code.google.com/p/tiny-js/
http://adaptive-enterprises.com/~d/software/see/
http://sourceforge.net/projects/njs/
v8 is an obvious open source implementation, because it's packaged separately (and used in node.js), but its API is C++ and relatively complex. For a lot of applications, it's overkill.
Re: Duktape: an embeddable JavaScript engine
#7This looks really cool. I always wanted a small embeddable JS engine with a C interface. And it looks like you modelled the C API after the Lua C API? That is what I wanted as well. Here are some related projects I saved links to. I think there were a few others. http://code.google.com/p/tiny-js/ http://adaptive-enterprises.com/~d/software/see/ http://sourceforge.net/projects/njs/ v8 is an obvious open source impleme…
Re: Duktape: an embeddable JavaScript engine
#8If this is embedded in C++ I feel like you would be manipulating objects in the JavaScript scripts. JavaScript has OOP bolted on and it is not nearly as nice as Lua or similar alternatives. Why would a developer embed a JavaScript engine compared to something already existing?
Re: Duktape: an embeddable JavaScript engine
#9Re: Duktape: an embeddable JavaScript engine
#10Has anybody experience, how the integration overhead is? Looks as this could be integrated very simply. The problem is, that it is in alpha stage and how stable and complete is it currently?