-
Not really your problem, per say, but if libraries maintain their own type definitions they tend to stay in sync better than ones provided separately. This would be a big help for fengari, specificall…
-
Hello, would it be possible to remove the C dependency on the messagepack implementation and use a pure lua implementation such as https://fperrad.frama.io/lua-MessagePack? This would allow this libra…
-
`cmsgpack` is a global lua object which allows to pack & unpack messagepacks.
It is a standard object that redis adds, therefore, in my opinion it is better to add it as this mock adds the [`redis`](…
-
Hey,
I've been using this for a fantasy console project of mine for a few months. There seems to be a leak somewhere that leads to a 100% cpu usage by the lua garbage collector after a few minutes.…
-
Hello, I have noticed some JS package has been used the ESModule instead CommonJS. Its annoying since there's no built-in JS function in lua like `js.import`.
Does the team have a plan to add `impo…
-
I'm running
```
fengaric -s my_file.lua
```
Which brings me back `fengaric: unrecognized option '-s'`
-
Minimal example, e.g. in the https://fengari.io REPL:
js.typeof(js.global)
```
Uncaught exception TypeError: Cannot read property 'funcOff' of undefined
at rt (javascript:8)
at Et…
-
How much trouble would it be to add support for `io.stdout:write`, `io.stdin:read`, `io.open` in read mode, and `file:read`?
I assume `io.stdout:write` is easy; basically a `print` without tabs or …
-
C language docs says the following about `.precision` field in `sprintf()` format:
> If the period is specified without an explicit value for precision, 0 is assumed.
But Fengari raises error …
-
Is there any plan to add support for the browser based version of vscode (eg https://vscode.dev)?