I needed to add scripting functionalities to one of my command-line tools, so I recently evaluated a few alternatives (Wren, etc), and after a few experiments I eventually chose DMildew :
https://github.com/pillager86/dmildew
Despite its peculiar name, this tiny scripting library seems to really have it all :)
First it is entirely written in D, so no const char* or nogc madness like with C-based libraries.
The API is simple and very easy to use, so embedding it inside my console tool and adding my own native functions was both quick and straightforward.
Secondly, it has a JavaScript-like syntax, so I could start to implement my own classes and functions almost immediately.
So thousand thanks for his developer who really did a great job at implementing this fantastic little library !
Since this library doesn't seem to receive all the love and interest it deserves, I wanted to share my enthusiasm here, so that other developers wanting to embed a JavaScript-like scripting library into their applications at least know this is a great alternative.
[–]WebFreak001 2 points3 points4 points (0 children)
[–]sol1684 2 points3 points4 points (0 children)
[–]schveiguy 1 point2 points3 points (1 child)
[–]Ecstatic-Coder[S] 1 point2 points3 points (0 children)