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. 

 

duktape

 

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:

 

  • Built-in regular expression engine

  • Built-in Unicode support

  • Minimal platform dependencies

  • Combined reference counting and mark-and-sweep garbage collection with finalization

  • Custom features like coroutines, built-in logging framework, and built-in CommonJS-based module loading framework

  • Property virtualization using a subset of ECMAScript E6 Proxy object

  • Liberal license (MIT)

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:

duk_eval_string(ctx, "print('Hello world!');");

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. 

 

duktapeicon

Banner


Excel Spreadsheet - A Joke?
01/04/2024

No this isn't an April Fool's although in places it seems like one. It's a true account of how Williams Racing has suffered through reliance on an overgrown and outdated Microsoft Excel spreadsheet, l [ ... ]



Explore SyncFusion's Blazor Playground
16/04/2024

Syncfusion has provided an in-browser environment where you can write, compile and run code that uses Blazor components and get it previewed live.


More News

 

raspberry pi books

 

Comments




or email your comment to: comments@i-programmer.info

Last Updated ( Thursday, 11 December 2014 )