0.0.6 • Published 7 years ago

monkey-scale v0.0.6

Weekly downloads
1
License
ISC
Repository
github
Last release
7 years ago

monkey-scale

Automatically scale you node clusters up and down. Also monitor your cluster's performance.

const express = require("express");
const app = express();
const monkey = require("monkey");

// normal configuration
app.set("port", 3000);
app.get("/", function(req,res) {
  res.send("<h1>Your Server</h1>");
})

// monkey will listen to the port specified
// pass empty parameters for default configuration
monkey(app, {});

// or set minimum and maximum number of workers
monkey(app, {threshold:4,limit:8});
0.0.6

7 years ago

0.0.5

7 years ago

0.0.4

7 years ago

0.0.3

7 years ago

0.0.2

7 years ago

0.0.1

7 years ago