0.0.2 • Published 10 years ago

websocketdjs v0.0.2

Weekly downloads
5
License
BSD-2-Clause
Repository
github
Last release
10 years ago

Websocketd.js

Shameless theft of websocketd, written in javascript.

Why? I needed some looser security. Didn't want to wait. Didn't want to write any Go. And it's like 50 lines of code... Prolly don't handle most edges :-P Please PR.

How it works

It works very similar to websocketd. For each new established connection it will spawn a child of the supplied process. Any stdout and stderr from that child will be sendt to the connecting client. And any data sendt from the client will be piped to stdin of the child process.

Install

npm install -g websocketdjs

Run

websocketdjs --port 8080 tail -f /var/log/nginx/access.log

Connect

var ws = new WebSocket('ws://localhost:8080/')
ws.onmessage = function(event) { console.log(event.data); }
// --> nginx logs

enjoy.