Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

blitz

Package Overview
Dependencies
Maintainers
1
Versions
539
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

blitz

Blitz node.js client API

  • 0.1.3
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
5.7K
decreased by-6.3%
Maintainers
1
Weekly downloads
 
Created
Source

blitz.io

Make load and performance a fun sport.

  • Run a sprint from around the world
  • Rush your API and website to scale it out
  • Condition your site around the clock

Getting started

Login to blitz.io and in the blitz bar type:

--api-key

Now

npm install blitz

Then

Sprint

var Blitz = require('blitz');

console.log('Starting Sprint...');
Blitz('<email>','<api-key>').sprint({
    steps: [
        {url: 'http://your.cool.app'},
        {url: 'http://your.cool.ap/page1'}
    ],
    region: 'california'}, function (err, data) {
        if(err != null) {
            console.log(err);
            return;
        }
        console.log('region: ' + data.region);
        console.log('duration: ' + data.duration);
		var steps = data.steps;
		for(var i in steps) {
			var step = steps[i];
			console.log("> Step " + i);
			console.log("\tstatus: " + step.response.status);
			console.log("\tduration: " + step.duration);
			console.log("\tconnect: " + step.connect);
		}
    });

Rush

var Blitz = require('blitz');

console.log('Starting Rush...');
Blitz('<email>','<api-key>').rush({
    steps: [
        {url: 'http://your.cool.app'},
        {url: 'http://your.cool.ap/page1'}
    ],
    region: 'california',
    pattern: { intervals: [{start: 1, end: 10, duration: 30}]}
}, function (err, data) {
        if(err != null) {
            console.log(err);
            return;
        }
        console.log('timeline: [');
        var timeline = data.timeline;
        for(var i in timeline) {
            console.log('total: ' + timeline[i].total + ', errors: '+ timeline[i].errors);
            var steps = timeline[i].steps;
            for(var j in steps) {
                console.log("\t\t{step "+ j + " duration: " + steps[j].duration + "}");
            }
        }
        console.log(']');
    });

FAQs

Package last updated on 26 Oct 2011

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc