1.0.2 • Published 4 months ago

@phish108/web-service-core v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
4 months ago

node-web-service

Synthesize common functions for JS-Koa Webserivces.

Automatic Testing

This package serves as the foundation for the sdg js services. It allows to focus on handler functions instead by removing common code. It also enforces common standard practices for the services.

Features

  • JSON log format (based on winston)
  • Endpoint level performance logging
  • Koa integration
  • Message Queue integration
  • graphql backend integration
  • Dynamic configuration

Usage

npm install @phish108/web-service-core

After that the component can be included in the project.

import * as App from "@phish108/web-service-core"

// load your service's request handlers
import * as ServiceHandler from "./handler"

// load your service's configuration defaults, which should
// include your endpoint definition.
import defaults from "./defaults.json" with {type: "json"};

const instance = await App.init(defaults, ServiceHandler);

// run any module level initialisation based on instance.config etc.

instance.run();

The instance has a single run() function, but includes references to the service's config, Logger, message queue (mq) and graphql database (db). These options can be used to initialise anly components if needed. These components are also available per request in the request's ctx.state object.

Service configuration

This system uses @phish108/yaml-configurator for system configuration. This allows for flexible service configuation in YAML or JSON with default presets.

The defaults need to be provided as JSON (to make us of the JSON importer).

Routes

In order to make this module work for you, you need to define your endpoint logic under endpoints. The following example shows a simple service configuation with a single endpoint.

{
    "endpoints": [
        {
            "route": "/hello",
            "method": "post",
            "handler": [
                "loadFromDatabase",
                "respondHello"
            ]
        }
    ]
}

The handler list needs to be a list of type string, where each string is a handler provided in your ServiceHandler-object. Internally these handlers are stacked by docker compose in the given sequence. If a handler is missing, the service raises an error and refuses to start.

Configuration files

The init() function requires the defaults and the service handler object. Optionally, one can pass a number of locations where the module should look for the configuration files. By default the module will check the following locations in the order given below:

  • /etc/app/config.yaml
  • /etc/app/config.json
  • ./config.yaml
  • ./tools/config.yaml

It is convinient not to touch these locations and just place your config in one of these locations in your Docker container. If you insist, you can pass custom locations to the init() function. These locations will be prepended to the default locations, so in case a sysadmin ignores your locations the default locations will still work.