Duktape Embeddable JavaScript Engine |
Written by Ian Elliot |
Thursday, 11 December 2014 |
JavaScript is everywhere, but what if you want it as a scripting language in your own app or device? Duktape might be what you need. It is open source and has just reached version 1. If you need to add JavaScript to a project then you could take one of the big engines like SpiderMonkey or V8, but the key word here is "big". Duktape is an ECMAScript 5 conformant language, and it also has some features from E6, packaged into a small footprint C program that can be linked into C or C++ projects.
Of course "small" is a relative term and 200kB of code may still be too much for some hardware. It also needs 46kB of startup RAM, but this can be reduced to 22kB. From an IoT point of view, it can work with systems that have 256kB of Flash and 96kB of RAM. To put this in perspective this means it could run on an Arduino Due but not on an Uno. Other advantages are:
It also has a Duktape global object which provides custom built-ins such as print() and alert(). It is also very easy to get started with. To add it to a project you simply include it, run an initialization command and then pass it the JavaScript code you want to run:
where ctx is the pointer to the Duktape engine. So you can simply provide a buffer for your user to enter code and you can let them run it. In most cases you are going to want to add custom functions to the JavaScript environment and to do this you add C functions which can be called from the JavaScript. This is easy and requires only the use of some of the Duktape API calls to pass parameters and results and to register the C function with the engine. Once registered the C function can be called just like a native JavaScript function. In addition to being able to use Duktape as an embeddable JavaScript engine, DukLuv is a separate project which has added libuv to the Duktape engine to produce something that works like Node.js, but with a small footprint - Node.js for embedded devices if you like.
More InformationRelated ArticlesNode.js Fork - Now You Have A Choice To Make Java, ASM.js Or Native - Which Is Faster? JSFeat - JavaScript Image Processing Library
To be informed about new articles on I Programmer, install the I Programmer Toolbar, subscribe to the RSS feed, follow us on, Twitter, Facebook, Google+ or Linkedin, or sign up for our weekly newsletter.
Comments
or email your comment to: comments@i-programmer.info |
Last Updated ( Thursday, 11 December 2014 ) |