#1 2019-11-19 21:16:45

Javierus
Member
Registered: 2019-09-18
Posts: 43

Is there someone out there using this?

I mean, other than the creators.

There is no documentation and no examples; the help through the forum is scarce.

I'd like to give it a try, but looking at all that I'd not dare integrating this in my product

Please, tell me I'm wrong

Offline

#2 2020-01-21 15:53:33

keesver
Member
Registered: 2020-01-21
Posts: 1

Re: Is there someone out there using this?

I'm in the same position. I did some testing and am quite impressed by this script engine. It is fast, integrates very well with Delphi, it has everything one might need.

Can anyone comment on the position of this product?

Offline

#3 2020-01-24 15:55:41

array81
Member
From: Italy
Registered: 2010-07-23
Posts: 411

Re: Is there someone out there using this?

I use it on my project to do it: delphi application call js file with same variables as parameters, the JS code is executed then pass result as variables to delphi application. Yes I don't have found documentation but there is a working example. I used that to understand how to do it

Offline

#4 2020-01-25 15:32:02

edwinsn
Member
Registered: 2010-07-02
Posts: 1,215

Re: Is there someone out there using this?

no, no requirements yet, but the SynNode module is really really impressive!

Alternatives:
https://github.com/Coldzer0/QuickJS-Pascal (based on a famous lightweight engine by a famous open source rockstar)

and

https://github.com/tondrej/chakracore-delphi (based on chakracore which Microsoft no longer enhances)

Last edited by edwinsn (2020-01-27 03:41:36)


Delphi XE4 Pro on Windows 7 64bit.
Lazarus trunk built with fpcupdelux on Windows with cross-compile for Linux 64bit.

Offline

#5 2020-01-26 11:36:50

ab
Administrator
From: France
Registered: 2010-06-21
Posts: 14,165
Website

Re: Is there someone out there using this?

If ChakraCore is not longer actively maintaining it, then about performance only V8 and SpiderMonkey remain.
QuickJS is faster than other embedded interpreters, but much slower than JITted engines.

The main benefit of SpiderMonkey, IIRC, is that it is much more multi-thread friendly than V8.
SyNode maintains one SM execution engine per thread, and it is very stable and efficient if you don't share variables between threads, which is likely the case to call mORMot code - which is thread safe by design.
This multi-threading ability of processing incoming REST requests is one killer feature in comparison to Node.js, which supports only code-level threading using worker threads.

If you want to run JavaScript logic on server side, with the power of mORMot database and http server, check https://unitybase.info/
It features mORMot SynDB+REST core, with SyNode/SpiderMonkey on the top, some web UI tools, and an amazing list of JS modules ready to be used.
IMHO it may be a Node killer.

Offline

Board footer

Powered by FluxBB