1.1.0 • Published 10 years ago

khs-discover v1.1.0

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

khs-discover

A Light weight nodejs discovery service

Install

npm install khs-discover --save

To add to a service Client

var discoveryClient = require('khs-discover');
    discoveryClient.config({
        server: {
            port: 8762,
            hostname: "localhost"
        },
        client: {
            port: 3000,
            name: "Example App"
        }
    });
discoveryClient.EnableDiscoveryClient();

To create a Discovery Server

var discovery = require('khs-discover');
discovery.config({
  server: {
      name: "ksh-discover",
      port: 8762
  }
});
discovery.EnableDiscoveryServer();

Release History

  • 1.0.8 Starting Point
    • added site
    • added status feature
    • added status walk
    • added client - server commuication
    • added uid to host
  • 1.0.0 Initial release
1.1.0

10 years ago

1.0.8

10 years ago

1.0.7

10 years ago

1.0.6

10 years ago

1.0.5

10 years ago

1.0.3

10 years ago

1.0.2

10 years ago

1.0.1

10 years ago