Skip to content

Instantly share code, notes, and snippets.

@Planeshifter
Last active August 29, 2015 14:24
Show Gist options
  • Save Planeshifter/4f457c932d8259f277ec to your computer and use it in GitHub Desktop.
Save Planeshifter/4f457c932d8259f277ec to your computer and use it in GitHub Desktop.
Run a JS file from R
system("node fun.js myaddress")
var args = process.argv;
function processAddress( address ) {
console.log( address );
}
processAddress( args[2] );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment