https://github.com/johnsonlee/leanengine-rmi
Unit Test Framework for LeanEngine
https://github.com/johnsonlee/leanengine-rmi
Last synced: about 1 year ago
JSON representation
Unit Test Framework for LeanEngine
- Host: GitHub
- URL: https://github.com/johnsonlee/leanengine-rmi
- Owner: johnsonlee
- License: mit
- Created: 2015-06-25T04:09:20.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-06-25T06:21:23.000Z (almost 11 years ago)
- Last Synced: 2025-02-28T13:56:18.554Z (over 1 year ago)
- Language: JavaScript
- Size: 129 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# leanengine-rmi
Unit Test Framework for LeanEngine
## Installation
```
npm install leanengine-rmi
```
## Example
```
var rmi = require('leanengine-rmi');
rmi.invoke('hello', null, {
success : function(result) {
console.log(result);
},
error : function(e) {
console.error(e);
},
});
```