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


nginx Core Developer Announces New Fork
23/02/2024

One of the core developers of nginx has said he is no longer working on the development of the popular and widely used nginx web server, and is instead working on a new fork. Maxim Dounin release [ ... ]



Microsoft Is Ending Support For Windows Android Subsystem
07/03/2024

Microsoft has announced that it is ending support for running Android applications under Windows 11. The support will cease next year. This announcement was followed rapidly by Amazon announcing the e [ ... ]


More News

 

raspberry pi books

 

Comments




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

Last Updated ( Thursday, 11 December 2014 )