0.0.4 • Published 9 years ago

sio v0.0.4

Weekly downloads
5
License
MIT
Repository
github
Last release
9 years ago

sio, a socket.io debugger

Sio was created because I was frustrated with making temporary index files and mashing F5 when I wanted to test or debug socket.io applications.

npm.io

Installation:

npm install -g sio

It's a terminal app. Features:

  • Connect to any socket.io 1.0+ server
  • Filtering of incoming events
  • Pausing and unpausing output
  • Emitting your own events
  • More to come?

Usage

# Connect to a server
c <host> <port>
# Emit an event. The "data" will be evaluated, so any valid Js goes.
e <name> # <data>
# Filter event names. They're matched with minimatch.
f <pattern>
# Removes all filters
uf
# Pauses output
p
# Unpauses output
up
# Clears all output
cls