Skip to content

Latest commit

 

History

History
78 lines (57 loc) · 1.41 KB

README.md

File metadata and controls

78 lines (57 loc) · 1.41 KB

Janus web sniffer Demo

Requirements

To use the sniffer you will need.

Install Node.js, Npm and ZeroMQ-node.js

The following intructions can be used in Ubuntu to setup the necessary dependencies.

Node.js

$ sudo apt-get update
$ sudo apt-get install git-core curl build-essential openssl libssl-dev
$ git clone https://github.com/joyent/node.git
$ cd node
$ git tag # Gives you a list of released versions
$ git checkout v0.10.25
$ ./configure
$ make
$ sudo make install

Npm

$ curl https://npmjs.org/install.sh | sudo sh

###Install ZeroMQ Libs

Download sources from http://zeromq.org/intro:get-the-software

$ cd zeromq-3.2.4/
$ ./configure && make
$ sudo make install

ZeroMQ-node

$ npm install zmq
$ sudo ldconfig

jQuery

$ npm install jquery

Npm In meteor

https://github.com/arunoda/meteor-npm

$ npm install -g meteor-npm #single time operation
$ meteor-npm #type inside your project

If your are behide a proxy

$ npm config set proxy http://proxy.company.com:8080
$ npm config set https-proxy http://proxy.company.com:8080