You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Sami Vaarala e73164eefb Makefile whitespace consistency in extras 7 years ago
..
Makefile Makefile whitespace consistency in extras 7 years ago
README.rst print-alert/console extra consistency trivia 9 years ago
duk_print_alert.c Add flags to duk_print_alert_init() 9 years ago
duk_print_alert.h Add C++ mangle wrappers for extras 7 years ago
test.c Minor module-node fixes 9 years ago

README.rst

===================================================
Duktape 1.x compatible print() and alert() bindings
===================================================

The default ``print()`` and ``alert()`` built-ins were removed in Duktape 2.x
because they depended on stdout/stderr and were thus a portability issue for
some targets. This directory contains Duktape 1.x compatible optional
print() and alert() bindings:

* Add ``duk_print_alert.c`` to list of C sources to compile.

* Ensure ``duk_print_alert.h`` is in the include path.

* Include the extra header in calling code and initialize the bindings::

#include "duktape.h"
#include "duk_print_alert.h"

/* After initializing the Duktape heap or when creating a new
* thread with a new global environment:
*/
duk_print_alert_init(ctx, 0 /*flags*/);

See ``duk_print_alert.h`` for available flags.

* After these steps, ``print()`` and ``alert()`` will be registered to the
global object and are ready to use.