Socket
Socket
Sign inDemoInstall

service-cloud-service

Package Overview
Dependencies
106
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    service-cloud-service

Allows to create a cloud of services


Version published
Weekly downloads
0
Maintainers
1
Created
Weekly downloads
 

Readme

Source

Service Cloud - Server / Service

Allows to create a cloud of services.

Usage

Let's say we want to create a serivce called hello-world and this service has an action called say which produces a message with the sentence Hello World! depending on the language given in the options of the action.

const service = require('service-cloud-service');

const server = new service.ServiceCloudServer({
    address: 'localhost',
    port: 1900
});

const service = new service.ServiceCloudService('hello-world');
serviceHelloWorld.addAction('say', function(data, callback) {
    const messages = {
        'en': 'Hello World!',
        'fr': 'Bonjour le Monde!',
        'es': 'Hola el Mundo!'
    };

    callback(undefined, {
        message: messages[data.language]
    });
});
server.addService(serviceHelloWorld);

Add other services to the same server

const server = new service.ServiceCloudServer({
    address: 'localhost',
    port: 1900
});

server.addService(service1);
server.addService(service2);
server.addService([ service4, service5 /* [...] */ ]);

If the server cannot find the requested service, it can ask to its gateways. If the gateway has gateways, it can ask to them too, leading to a network of services.

const server = new service.ServiceCloudServer({
    address: 'localhost',
    port: 1900
});

server.addResolveGateway('http://localhost:1818');
server.addResolveGateway([ 'http://localhost:1818', 'http://localhost:1819' /* [...] */ ]);
server.addResolveGateway({
    address: 'localhost',
    port: 2000,
    path: '/my/root/path',
    protocol: 'https:'
});
server.addResolveGateway([{
    address: 'localhost',
    port: 2000,
    path: '/my/root/path',
    protocol: 'https:'
}, {
    address: 'localhost',
    port: 2005,
    path: '/my/root/path',
    protocol: 'https:'
} /* [...] */ );
server.reference({
    serviceName: 'my-service-name'
    actionsName: [
        'action1',
        'action2',
        'action3'
    ],
    remote: 'http://localhost:1600'
});

Keywords

FAQs

Last updated on 12 Nov 2017

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc