daurnimator
daurnimator
It would be nice to be able to have lua load node.js modules on the fly. i.e. `runtime:require("../foo.js")`. - It should take care of relative paths etc. - It should...
Indexing and indexed assignment have slightly different semantics in JS vs Lua. This will also help with #3. Instead of compiling `a = foo.bar` to `a = foo.bar`, it should...
@zeen thought it would be cool to compile React.JS into Lua. The JS source file: http://fb.me/react-0.11.1.js The first error is ``` lua: ./castl/prototype/regexp.lua:110: bad argument #1 to 'find' (string, table...
Would be cool to be able to install CASTL via luarocks.
I'd like it if hererocks just had an option to download (and pre-fill the cache) and skip the build/install step.
I'd like to be able to set the download directory for future hererocks invocations. ==> I'd like to be able to set the default download location in a config file....
> This feature is not going to work on the live Bitcoin network until the OP_RETURN length is increased from 40 to 80 bytes, which will happen in Bitcoin Core...
e.g. Two script tags are added to document, they both contain code to remove the other. Do both run? ```html console.log("A") var b = document.getElementById("b"); b.parentNode.removeChild(b); console.log("B") var a =...
Can we support any `on*` handlers on any element? - Use a namespaced attribute in html to know that it's lua? e.g. `` - Use a mutation observer to watch...