-1

I am porting an in-house system from Duktape to quickJS to take advantage of the support for ES6 features and good module support (including dynamic imports).

Have ported some simple class libraries to be imported as shared object modules. But getting stumped with more advanced inter-operation issues. quickjs.h contains approximately 400 entries, but there are less than 2 pages of documentation for the C-API.

Any suggestions as to where more detailed documentation could be found? Failing that pointers to any well documented project using quickJS might help. Yes, I have Googled and haven't found anything useful.

Vadim Kotov
  • 8,084
  • 8
  • 48
  • 62
CyberFonic
  • 3,957
  • 1
  • 21
  • 21

1 Answers1

4

I am also in the same boat,QuickJS docs & examples are hard to find here are the best ones I found so far :

hope the above examples help !

Mark Moissette
  • 169
  • 2
  • 13
  • I posted about exposing C structs inside QuickJS - https://stackoverflow.com/questions/70123636/use-quickjs-to-modify-preferences-and-global-variables . Any pointers will be greatly appreciated. – moi Nov 27 '21 at 18:16