Javascript in socket? -How can I use player io?

Player io does not support defold. Can I use it as defold with javascript or c# or others?

Also;
I can distribute the ease out of the way. Can I extend it with JavaScript code?

Yes, you can wrap the player.io JavaScript client as a native extension and use it from Defold. See below.

You can extend the features of the engine through what we call native extensions. A native extension adds additional native code and Lua bindings to the engine to make new functionality available through Lua and your own scripts. On HTML5 you extend the engine using C+Javascript. More about native extensions here:

2 Likes

Thank you.