polardbxengine/extra/duktape/duktape-2.3.0/extras/module-duktape
dengwendi 1d6524707e INIT 2023-11-15 15:04:10 +08:00
..
Makefile INIT 2023-11-15 15:04:10 +08:00
README.rst INIT 2023-11-15 15:04:10 +08:00
duk_module_duktape.c INIT 2023-11-15 15:04:10 +08:00
duk_module_duktape.h INIT 2023-11-15 15:04:10 +08:00
test.c INIT 2023-11-15 15:04:10 +08:00

README.rst

===============================================
Duktape 1.x compatible module loading framework
===============================================

The default built-in module loading framework was removed in Duktape 2.x
because more flexibility was needed for module loading.  This directory
contains a Duktape 1.x compatible module loading framework which you can
add to your build:

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

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

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

      #include "duktape.h"
      #include "duk_module_duktape.h"

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

  Don't call ``duk_module_duktape_init()`` more than once for the same global
  environment.

* As usual in Duktape 1.x, you should define ``Duktape.modSearch()`` to provide
  environment specific module lookups.

* After these steps, ``require()`` will be registered to the global object and
  the module system is ready to use.