Skip to content

Latest commit

 

History

History
34 lines (21 loc) · 916 Bytes

README.md

File metadata and controls

34 lines (21 loc) · 916 Bytes

sawKit-node

A back-end Facade over the popular 'ws' module for Node, allowing for event emissions and custom event reception.

Quick-Start

npm install sawkit-node or cd node_modules and git clone https://github.com/cScarlson/sawkit-node.git.

    var $ws = require('sawkit-node');
    
    $ws({port: 8080}).ready(function($ws, ws){
      
      $ws.send('Tonight at 9...')
        .send({msg: 'tonight at 9...'})
        .emit('news', {message: 'WARNING! Flash-flood!'})
        .emit('news', 'TORNADOW WARNING!');
      
      $ws.on('news', function(data){
          console.log('NEWS!', data, typeof data);
        })
        .on('message', function(data){
          console.log('MESSAGE!', data, typeof data);
        });
        
      $ws.sendBinary(binary);
      
    });

METHODS

COMING SOON!