asyncy

The Asyncy node module. Helpers library to interact with the asyncy ecosystem


Keywords
asyncy, node, javascript, microservice, nodejs, oms, open-microservice
License
MIT
Install
npm install asyncy@0.0.6

Documentation

Asyncy Node

Execute a javascript file with arguments.

Example

console.log('Hello ' + process.argv[2] + process.argv[3]);

The file above is checked into your repository at the path /log.js

result = node `log.js` "foo" "bar"

The variable result would equal "Hello foobar"