-
Notifications
You must be signed in to change notification settings - Fork 35
What is ReoScript
Jing Lu edited this page May 17, 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 script from string or file which specified by your application. Think about how do you plan to support script to be executed in your application.
- See [How to run script in your application](How to use ReoScript to run JavaScript).