joewalnes / websocketd

Turn any program that uses STDIN/STDOUT into a WebSocket server. Like inetd, but for WebSockets.
http://websocketd.com/
BSD 2-Clause "Simplified" License
17.14k stars 1.01k forks source link

various fixes for the nodejs examples README #344

Closed volkovmqx closed 5 years ago

volkovmqx commented 5 years ago

first fix is the matching filenames. and the second fix is i found out i need to do a chmod +x (make it executable) on unix systems. this can be prevented when using node script.js instead of ./script and it works on all the systems.

asergeyev commented 5 years ago

Good find... Could you chmod .js files back to 644 permissions? (basically rolling back ba15f3a)

volkovmqx commented 5 years ago

there you go ^^

asergeyev commented 5 years ago

Thank you