Hubik-Plugin-Network
v0.0.1
Published
The network plugin of Hubik.
Downloads
1
Readme
#Hubik-Plugin-Network
The network plugin for Hubik.
##Requirement
- Mac OS X
- Nodejs >= 5.0.0
##Installation
npm install hubik-plugin-network
##Usage
var Hubik = require("hubik");
var network = require("hubik-plugin-network");
var hubik = new Hubik();
hubik.install([network]);
hubik
.suite(function($plugin){
$plugin.enable(network.name); //Enable the network plugin.
...
})
.run(function(report){
console.log(report);
});
###report This plugin will generate two standard har format data.One includes the network data of Navigation period. The other includes all the network data.You can find a standard har tool to analyze them. Har Viewer
##Example