UE4 project containing several samples to show how to use UE4JwRPC
currently there are 2 samples :
-
SimpleChatCPP
client for a simple public chat room that anyone can join by a username and starts typing. uses C++ APIs of the plugin.
-
SimpleChatBP
Blueprint only version of the above.
the server is written in nodejs so first of all install nodejs, then run the following commands to install the dependencies and launch the server.
cd Server
npm install
node SimpleChatServer.js
now our server should be ready and listening for client connections.
from editor or standalone build open the map you want. (Map_SimpleChatBP, Map_SimpleChatCPP, ... )