-
Hi, I'm curious to try this out. It looks more active compared to the original from bellard, which points to this documentation.: https://bellard.org/quickjs/ However, I want to try this one since it seems to have moved much further in terms of commits and ES compatibility. Where can I red the docs to figure out how to use this as an embeddable JS engine? Or is tixki the recommended path? I think tixki isn't embeddable but I couldn't figure out what it should be used for. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Hey there! We haven't yet created new documentation. Most of that documentation still stands though. While we added a bunch of JS APIs and things, the core QuickJS API is the same. If you want to embed it into your project you can follow that. As the author of txiki.js: it's not currently designed to be embedded but rather to be a standalone, minimalistic runtime. |
Beta Was this translation helpful? Give feedback.
-
is there a way to compile it to output dynamic loadable shared library? .so for linux and mac? I'm looking for a means to compile into a dynamic loadable shared library (.SO in Unix, DLL in Windows), with possibility of calling into the functions in the shared library. |
Beta Was this translation helpful? Give feedback.
Hey there! We haven't yet created new documentation.
Most of that documentation still stands though. While we added a bunch of JS APIs and things, the core QuickJS API is the same. If you want to embed it into your project you can follow that.
As the author of txiki.js: it's not currently designed to be embedded but rather to be a standalone, minimalistic runtime.