Project

wsio

0.01
No commit activity in last 3 years
No release in over 3 years
Web stream input/output tool
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

>= 1.5.2
>= 2.1.5.2
>= 1.2.4
 Project Readme
wsio -- web stream input/output tool

Dependencies: Ruby (dev version to compile extensions) and Rubygems

Install: sudo gem install wsio

Usage: wsio [options] [user[:pass]@][hostname][path]
  -l  Listen to stream and print to STDOUT
  -s  Use HTTPS
  -k  Ignore SSL verification (like curl)
  
By default, wsio listens to STDIN and does an HTTP POST for each line.

This tool is similar to netcat in that it's intended to be used with STDIN and
STDOUT, making it perfect for command pipelining. However, instead of direct
point to point TCP/UDP connections, it uses HTTP. Coupled with a server that
provides realtime pubsub over HTTP and you have one of the most magical tools
ever. Here's a toy log aggregation example:

Run this on one or several machines:

  tail -f /var/log/something | wsio somehost/log

Run this on your central aggregator:

  wsio -l somehost/log > /var/log/aggregate

Run this on your *laptop behind NAT* to watch the logs:

  wsio -l somehost/log


Obviously there is a server-side component to this. It's not that complicated
and there are some servers that already implement streams this way. 

For example, Twitter's Stream API:

  wsio -l <user>:<pass>@stream.twitter.com/1/statuses/sample.json

However, wsio was made with a particular server-side component in mind. If you
are interested in this, please email me.