duktape icon indicating copy to clipboard operation
duktape copied to clipboard

Duktape - embeddable Javascript engine with a focus on portability and compact footprint

Results 146 duktape issues
Sort by recently updated
recently updated
newest added

Waht options do i have if my project is using rust. I would not prefer the c2rust way. But am open for suggestions. Thank you.

The example event loop does not compile for Win32 because `poll()` is not available. Fix copied from `poll.c` in the same directory.

Hello, I am working on running some Kotlin/JS code under Duktape, and am running into this issue: `SyntaxError: empty expression not allowed (line 1)`. I am using webpack to build...

I'm working on an app that has multiple, distinct "modules" (I'm not referring to modules mentioned in the duktape documentation). Each of these are scriptable with javascript, so I integrate...

I am integrating duktape + handlebars.js in my C++ program and when I try to `duk_peval` this code I get an error on line 3: ```js 'use strict' module.exports =...

i spent the past 2 days trying to get dukluv to build with the latest libuv and duktape. i applied the patches that @svaarala and @FreshXOpenSource had submitted to the...

Hi, is there some example on how we can use JS callbacks/async call with Duktape? E.g. I would like C-code to call this script (`read` and `write` functions are defined)...

Due to compiling with -std=c99 it has 13 warnings. Removing the flag entirely and letting GCC use whatever std it pleases, results in a warning-free build and no segfaults. The...

Is there any place where I can read info about the planned changes for Duktape 3.0? Also, any idea of the kind of timeline for the new version to hit...

**Version:** `2.7.0` **Description**: When I run the following test case, I found that duktape is much slower than other js engines,such as quickjs or mujs. I want to know what...