Components All New MacOS Windows Linux iOS
Examples Mac & Win Server Client Guides Statistic FMM Blog Deprecated Old

JavaScript.LoadLibrary

Loads the JavaScriptCore library.

Component Version macOS Windows Linux Server iOS SDK
JavaScriptWebKit 13.1 ✅ Yes ✅ Yes ✅ Yes ✅ Yes ✅ Yes
MBS( "JavaScript.LoadLibrary"; Path )   More

Parameters

Parameter Description Example
Path The native file path to the library. "/usr/lib/aarch64-linux-gnu/libjavascriptcoregtk-4.1.so"

Result

Returns OK or error.

Description

Loads the JavaScriptCore library.
Does nothing on macOS or iOS since we use the library provided by Apple with the operation system.

You can load JavaScriptCore.dll on Windows here.
Make sure all dependencies are honored and you may use Dependency Walker application to look for dependencies.

You can load libjavascriptcoregtk.so on Linux here.
e.g. "/usr/lib/aarch64-linux-gnu/libjavascriptcoregtk-4.1.so" for Linux 64-bit on ARM.
On Linux you need to install a package which includes JavaScriptCore library, e.g. using “sudo apt-get install libjavascriptcoregtk-4.1” command.

Returns OK on success and an error message otherwise.

If you have trouble with DLLs not loading on Windows, please check if you have new Visual Studio Runtime libraries installed. If you need more than one DLL, please use Process.SetDllDirectory to point to the folder to find the DLL files.

Examples

Load library on Linux:

Set Variable [ $r ; Value: MBS("JavaScript.LoadLibrary"; "/usr/lib/aarch64-linux-gnu/libjavascriptcoregtk-4.1.so") ]

Load library on Windows:

Set Variable [ $r ; Value: MBS( "Process.SetDllDirectory"; "C:\Users\cs\Desktop\test") ]
Set Variable [ $r ; Value: MBS( "JavaScript.LoadLibrary"; "JavaScriptCore.DLL") ]

Load library on Windows with iTunes:

Set Variable [$r; Value: MBS( "Process.SetDllDirectory"; "C:\Program Files\iTunes") ]
Set Variable [$r; Value: MBS( "JavaScript.LoadLibrary"; "JavaScriptCore.dll") ]

See also

Release notes

Blog Entries

This function checks for a license.

Created 25th January 2023, last changed 19th March 2024


JavaScript.List - JavaScript.New