fengari icon indicating copy to clipboard operation
fengari copied to clipboard

🌙 φεγγάρι - The Lua VM written in JS ES6 for Node and the browser

Results 28 fengari issues
Sort by recently updated
recently updated
newest added

Hi, I am using fengari to create a client side framework, but I have noticed os.time fails with some valid dates. os.time({year=2065, month=8, day=1}) gives TypeError: invalid argument Any date...

So I have a lua runtime that can run `luaL_dostring` calls just fine. But when I call `require 'other_lua_file_in_load_path'` in `luaL_dostring`, I get the error: ``` (2): error loading module...

Hi there, now that #191 is merged, could you please push a new release with that bugfix? :) I'd greatly appreciate it! Thanks!

question

Hello, I'm trying to make [lua_cmsgpack.c](https://github.com/antirez/lua-cmsgpack) be available for lua operations through fengari. I was wondering if you could provide any pointers on how to achieve this as I'm not...

question

In node, we may be able to support `__gc` via use of https://github.com/node-ffi-napi/weak-napi

``` let fengari = require('fengari'); const luaconf = fengari.luaconf; const lua = fengari.lua; const lauxlib = fengari.lauxlib; const lualib = fengari.lualib; let L = lauxlib.luaL_newstate(); lualib.luaL_openlibs(L) lua.lua_register(L, "test", (state) =>...

Fengari is said to be "Verified to work in Microsoft IE 11". But unfortunately an error is raised under IE 11: > print(("%02X"):format(0)) TypeError: Object doesn't support property or method...

bug
help wanted

I'm using fengari-web without problems in a browser-side app bundled with webpack 3. When I try pulling in fengari API calls directly, I get these kind of errors. ``` ERROR...

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...

bug
blocked (external)

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...

enhancement
help wanted