-
Notifications
You must be signed in to change notification settings - Fork 35
What is ReoScript
Jing Lu edited this page May 21, 2013
·
24 revisions
ReoScript is JavaScript-like script language engine implemented in C#. .Net Application integrated with ReoScript engine to be available to run scripts like VBA in Excel.
Although ReoScript was be designed and implemented according to Standard ECMAScript/JavaScript as much as possible, there is something difference between JavaScript and ReoScript. See What's the difference between JavaScript and ReoScript.
Application integrated with ReoScript engine will be able to do:
- Run script language like JavaScript
- Custom work flow by write scripts
- Provide an ability for your user to write scripts
- Implement partial feature of entire application
ReoScript contains the following main components:
- ReoScript Core (Unvell.ReoScript.dll)
- ReoScript GUI Editor (Unvell.ReoScriptEditor.dll)
- ReoScript Console Runner (ReoScript.exe)
ReoScript runs specified scripts from string, file or other source that could be specified by your application. See how to integrate ReoScript in your application.