I want to run some javascript code from external source inside node.js server and return the results. inside html code I would just use
<script>http:\\address.of.code.com\code.js</script>
how do I run this inside node.js get the results of this script and return it to the caller ?
I have no prior knowledge of the script I want to run and it's resides in external address.
requirefetch remote files?