dukluv
dukluv copied to clipboard
LibUV bindings for duktape JS engine
I followed your instructions to build and got the following: ``` Undefined symbols for architecture x86_64: "_pthread_barrier_destroy", referenced from: _uv_barrier_destroy in libuv.a(thread.c.o) "_pthread_barrier_init", referenced from: _uv_barrier_init in libuv.a(thread.c.o) "_pthread_barrier_wait", referenced...
Does this get us to a reasonable subset of Node beyond console.log('Hello World!'); ? For instance, would someone be able to create simple command-line utilities that can share code with...
Hello, I tried to implement a setTimeout function. I couldn't find any documentation on the js built-in functions. so i startedto poke around through repl.js to see what's in there...
Actually not an issue but a solution : Building with MinGW ------------------------ > git clone https://github.com/creationix/dukluv.git > cd dukluv > git submodule init > git submodule update > mkdir build...
Add support for Duktape 2.x (and pre-release, i.e. `DUK_VERSION` 19999). This pull is a work in progress (not intended to be merged yet) and tracks incompatible Duktape 2.x changes so...
TypeError: cannot read property 'D:\x5cZUI\x5cTool/tcp-echo.js' of undefined at [anon] (d:\zui\zui\duktape\duk_hobject_props.c:2336) internal
submodule clone error: seraghiti@mint14 ~/dukluv $ git submodule update --init --recursive Submodule 'lib/duktape' (https://github.com/svaarala/duktape-releases.git) registered for path 'lib/duktape' Submodule 'lib/uv' (https://github.com/joyent/libuv.git) registered for path 'lib/uv' Cloning into 'lib/duktape'... remote: Counting...
this adds the option to include a bootstrap script to be run before the passed in script argument. the use case for this would be to bootstrap the environment, such...
Are there plans to pass on the C `argv` into the script environment to allow scripts to do command line parsing? This would be quite useful for e.g. Duktape's DukLuv...