Socket
Book a DemoInstallSign in
Socket

chaos-monkey-browser

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

chaos-monkey-browser

A 'chaos monkey'-style mischief maker that operates on the client.

latest
Source
npmnpm
Version
0.1.3
Version published
Weekly downloads
11
-35.29%
Maintainers
1
Weekly downloads
 
Created
Source

chaos-monkey-browser

A 'chaos monkey'-style mischief maker that operates on the client

What is Chaos Monkey?

Chaos Monkey is an idea originally outlined by the Netflix tech team.

The basic idea is to have something in your stack that causes random failures in your system, so you’ll be forced to make your app resilient against random failure.

What is chaos-monkey-browser?

chaos-monkey-browser is a failure module that installs entirely on the client. This is particularly useful for apps that use multiple backends or when developers don't have an easy method for modifying a remote dependency.

Inspired by Chaos Monkeyware

Usage

The failure propability is configurable (0.0 - 1.0 with 1.0 equal to 100%). The default is 0.1.

The currently included failure modes (called mischiefs) are:

  • Delay – provides the normal HTTP response, but with an added (random) delay of 1-5 seconds.
  • HTTP 403 Access Denied
  • HTTP 404 Not Found
  • HTTP 500 Internal Server Error

Currently, all of these mischiefs have equal propability. Mischiefs can be enabled independently by passing in only the desired mischiefs.

By default, all methods [GET,POST,PUT,DELETE] allow failure. Methods can be enabled independently by passing in only the desired methods.

chaos-monkey-browser is AMD-aware. It can be used with or without require.js.

Example

   var props = {
      probability:0.5,
      allowedMethods:['GET'],
      mischiefTypes:[
        ChaosMonkey.MischiefTypes.delay,
        ChaosMonkey.MischiefTypes.http403
      ]
    };
    ChaosMonkey(props);

For more detailed examples, see index.html and amd.html in the examples folder.

Requirements

chaos-monkey-browser works by overriding the jquery ajax call. Consequently, jquery is required. Asynchronous http calls that call the browser XMLHttpRequest API directly will not be intercepted.

Keywords

development

FAQs

Package last updated on 02 Jan 2014

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