David Konsumer
David Konsumer
I'm not following. What is the issue?
I am still thinking we could use ref-types in js-space here, like [ref-array-di](https://www.npmjs.com/package/ref-array-di). Basically, you can hold a reference if you keep access to the buffer that backs the array,...
Our current setup is mostly generated, and personally, I am very weak with C, so any assistance would be appreciated. I can help with a PR, if you need a...
> Are these libraries able to handle arrays of structs very easily? As far as I understand it, yes. They operate on a chunk of memory, and you can pass...
I don't remember what I was even doing, a year ago. Looking at the issue again, I think you could do something to get around it with [path-override-webpack-plugin](https://www.npmjs.com/package/path-override-webpack-plugin).
@theogravity 's solution helped me come to a solution I like for when I'm using graphql-tools (so I can define my graphql all in SDL and merge all my resolvers...
I tried being more explicit: ``` luapak make --lua-lib=/usr/lib/x86_64-linux-gnu/libluajit-5.1.a --lua-impl=LuaJIT --lua-incdir=/usr/include/luajit-2.1 ``` with same issues. luapak's directory-structure seems sensible: ``` .luapak ├── bin │ ├── rattata.lua │ ├── rattata.lua~ │ ...
Additionally, I tried using a pure-lua (via ffi) socket-library: https://github.com/CapsAdmin/luajitsocket Here is my rockspec: ```lua package = "rattata" version = "scm-1" source = { url = "https://github.com/notnullgames/rattata.git" } description =...
No, I ended up just not using luapak.
It's lambda-compatible, but they run node apps through [pkg](https://github.com/zeit/pkg) to bundle your whole app into a single file, for smaller (tree-shaken) file-sizes and ES7 syntax, among other things. I think...