duktape
duktape copied to clipboard
Duktape - embeddable Javascript engine with a focus on portability and compact footprint
Is that possible to compile js on duktape to native code like v8 engine? At least for ARM platform, so Duktape will be good alternative to node js for embedded...
`duk_config.h` contains the following snippet of code: ``` #if defined(__FAST_MATH__) #error __FAST_MATH__ defined, refusing to compile #endif ``` (which comes from `config/header-snippets/reject_fast_math.h.in`) But this prevents building anything that includes `duk_config.h`...
- [x] DJGPP support #2472 #2473 - [x] https://github.com/svaarala/duktape/pull/2480
Thanks for Duktape! I've had a lot of fun playing around with it as a hobby over the last couple years. This is the first issue I've stumbled upon. In...
There is a very simple fix, though... I added in ``` #ifdef __DJGPP #undef DUK_USE_DATE_PRS_STRPTIME #endif ``` in duk_config.h after the OS/compiler detection logic and my test program compiled and...
Hi, apologies if this is not a Duktape issue. I'm actually updating an old plugin for Movian and I'm new to both as a coder. So as the title says...
Arrow Function definitions. These examples are pulled from the ES6 Features website ( http://es6-features.org/ ) - [ ] Expression Bodies ``` JavaScript /* New Method */ // Expression bodies var...
Fixes #2417 New behavior: if argument is not undefined/unspecified or `"utf8"`, throw an error. Note: `null` is not a supported encoding in NodeJS
Hi I'm building my own visual debugger[1] (and it is nearly done :-) ), and I need to add a protection against infinite loop[2]. And I'm at my wit's end....