Random Number Stream
I need to open a stream between client and server and send 1000 random numbers (between 1 and 1000) generated on the client side (Javascript) to the server (Node.js).
- Each time the server receives a new value, it should be output into the log.
- The values need to be sent as utf-8 encoded strings
How is this done?