1.1.0 • Published 8 years ago

khs-discover v1.1.0

Weekly downloads
1
License
ISC
Repository
github
Last release
8 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

8 years ago

1.0.8

8 years ago

1.0.7

8 years ago

1.0.6

8 years ago

1.0.5

8 years ago

1.0.3

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago