Hi @TechZ,
Just taking a quick look at your pasted code, I think the problem might be on line 17.
node = texture;
On this line it appears that all you are doing is updating the node variable instead of its actual reference try changing line 10 to:
var node = this.monitor.render.meshInstances[0].material;
and line 17 to:
node.diffuseMap = texture;
This is one step, but I believe that you will also want to generate a playcanvas texture beforehand so that the map is read correctly. Here is a thread that deals specifically with loading an image from a URL and then applying it to a material’s properties:
Of course, the example here isn’t exactly the same, but there should be enough context to modify for your purposes.
I hope this is helpful!