
Duktape API
The Duktape API (defined in duktape.h) is a set of constants and API calls which allows C/C++ programs to interface with ECMAScript code and shields them from internal details like value …
Duktape Programmer's Guide
Duktape is an embeddable ECMAScript® engine with a focus on portability and compact footprint. By integrating Duktape into your C/C++ program you can easily extend its functionality through …
Duktape
Duktape is an embeddable Javascript engine, with a focus on portability and compact footprint. Duktape is easy to integrate into a C/C++ project: add duktape.c, duktape.h, and duk_config.h …
Duktape config options
There is a fixed-size top level hash table (whose size is defined using DUK_USE_STRTAB_CHAIN_SIZE), with each entry in the hash table being: (a) NULL, (b) a …
duk - Rust - dflemstr.github.io
Something that can be used as an argument when calling into Javascript code. API documentation for the Rust `duk` crate.
Configuring Duktape 1.x for build
Use the duk_config.h in the distributable (src/duk_config.h or src-separate/duk_config.h). If default features are not desirable, provide DUK_OPT_xxx feature options when compiling both …
How to work with lightfuncs - Duktape
The lightfunc type provides a very lightweight alternative to representing function objects. A lightfunc represents a native function using just a tagged value (duk_tval) with no heap …
GitHub - stfwi/duktape-cc: C++ wrapper templates around the …
Duktape is, similar to LUA and TCL, a programming language implementation optimized for resource restricted platforms, as well as for embedding scripting capabilities into native …
duktape_ffi - Rust - Docs.rs
EXPERIMENTAL: Low-level, unsafe wrapper arround the duktape API. Note that some of this code is generated based on the specific compiler, operating system and processor, so various …
duk::Reference - Rust
Accepted types are: fn, mod, struct, enum, trait, type, macro, and const. Search functions by type signature (e.g. vec -> usize or * -> vec )