core-clusterdeprecated

A small node.js library for creating cluster of node server based on no of cores system has.

Usage no npm install needed!

<script type="module">
  import coreCluster from 'https://cdn.skypack.dev/core-cluster';
</script>

README

core-cluster v1.0.2

Requirements

  • file_path:path of main server applicaiton file

  • arguments:args to pass to workers

  • log_status:param to show log

  • restart:param to restart instance if stopped

Installation

$ npm install core-cluster

How to use


var cluster=require('core-cluster');

//path of main server applicaiton file
var file_path='/server.js';

//arguments 
var arguments=[];

//show log 
var log_status=true;

//restart instance if it get stopped
var restart=true;

cluster.makecluster(file_path,arguments,log_status,restart,function(response){

console.log(response);

});

license

MIT