Hi all,
I am an API noob trying to get a Node.js script to work for UnityScript.
My code calls for 3 libraries from Node which are all loaded using **require()**
Unityscript (and as I understand orthodox Javascript) does not have the require() function built in. So my question is: how can I bring my libraries into the code without it?
(The libraries I need are: require("util") / require("request") / require("fs"))
Thank you!
↧