Would it be possible for me to connect to a server in java using Basic socket using a Javascript client?

1

I am studying game development and lately I have considered developing a game online or even online.
There are two IDE's in which I can develop games, Unity3D and RPG Maker MV which use the javascript language.
I'm a beginner in javascript so now I'm sorry for the question, but, I wonder if I can use some library in javascript to connect to a server I'm developing in java?
Detail: on the server I use the basic ServerSocket with lock.

    
asked by anonymous 10.04.2016 / 05:27

1 answer

1

Yes, because sockets work with file descriptors (texts), standardized concept in Unix BSD.

In a socket you send text and receive text, but other types of data can be transferred depending on your API's.

    
10.04.2016 / 22:39