1.0.4 • Published 1 year ago

pip-services3-commons-nodex v1.0.4

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

Portable Abstractions and Patterns for Node.js

This module is a part of the Pip.Services polyglot microservices toolkit. It provides a set of basic patterns used in microservices or backend services. Also the module implemenets a reasonably thin abstraction layer over most fundamental functions across all languages supported by the toolkit to facilitate symmetric implementation.

The module contains the following packages:

  • Commands - commanding and eventing patterns
  • Config - configuration pattern
  • Convert - portable value converters
  • Data - data patterns
  • Errors- application errors
  • Random - random data generators
  • Refer - locator inversion of control (IoC) pattern
  • Reflect - portable reflection utilities
  • Run - component life-cycle management patterns
  • Validate - validation patterns

Quick links:

Use

Install the NPM package as

npm install pip-services3-commons-nodex --save

Then you are ready to start using the Pip.Services patterns to augment your backend code.

For instance, here is how you can implement a component, that receives configuration, get assigned references, can be opened and closed using the patterns from this module.

import { IConfigurable } from 'pip-services3-commons-nodex';
import { ConfigParams } from 'pip-services3-commons-nodex';
import { IReferenceable } from 'pip-services3-commons-nodex';
import { IReferences } from 'pip-services3-commons-nodex';
import { Descriptor } from 'pip-services3-commons-nodex';
import { IOpenable } from 'pip-services3-commons-nodex';

export class MyComponentA implements IConfigurable, IReferenceable, IOpenable {
    private _param1: string = "ABC";
    private _param2: number = 123;
    private _anotherComponent: MyComponentB;
    private _opened: boolean = true;

    public configure(config: ConfigParams): void {
        this._param1 = config.getAsStringWithDefault("param1", this._param1);
        this._param2 = config.getAsIntegerWithDefault("param2", this._param2);
    }

    public setReferences(refs: IReferences): void {
        this._anotherComponent = refs.getOneRequired<MyComponentB>(
            new Descriptor("myservice", "mycomponent-b", "*", "*", "1.0")
        );
    }

    public isOpen(): boolean {
        return this._opened;
    }

    public open(correlationId: string, callback: (err: any) => void): void {
        this._opened = true;
        console.log("MyComponentA has been opened.");
        callback(null);
    }

    public close(correlationId: string, callback: (err: any) => void): void {
        this._opened = true;
        console.log("MyComponentA has been closed.");
        callback(null);
    }

}

Then here is how the component can be used in the code

import { ConfigParams } from 'pip-services3-commons-nodex';
import { References } from 'pip-services3-commons-nodex';
import { Descriptor } from 'pip-services3-commons-nodex';

let myComponentA = new MyComponentA();

// Configure the component
myComponentA.configure(ConfigParams.fromTuples(
  'param1', 'XYZ',
  'param2', 987
));

// Set references to the component
myComponentA.setReferences(References.fromTuples(
  new Descriptor("myservice", "mycomponent-b", "default", "default", "1.0",) myComponentB
));

// Open the component
myComponentA.open("123", (err) => {
   console.log("MyComponentA has been opened.");
   ...
});

Develop

For development you shall install the following prerequisites:

  • Node.js 8+
  • Visual Studio Code or another IDE of your choice
  • Docker
  • Typescript

Install dependencies:

npm install

Compile the code:

tsc

Run automated tests:

npm test

Generate API documentation:

./docgen.ps1

Before committing changes run dockerized build and test as:

./build.ps1
./test.ps1
./clear.ps1

Contacts

The module is created and maintained by Sergey Seroukhov.

The documentation is written by Egor Nuzhnykh, Alexey Dvoykin, Mark Makarychev.

pip-services-email-nodexpip-services-emailsettings-nodexpip-services-sms-nodexpip-services-smssettings-nodexpip-services-msgdistribution-nodexpip-services-msgtemplates-nodexpip-services-passwords-nodexpip-services-roles-nodexpip-services-sessions-nodexpip-clients-roles-nodexpip-clients-sessions-nodexpip-clients-sms-nodexpip-clients-smssettings-nodexpip-services-accounts-nodexpip-services-activities-nodexpip-clients-passwords-nodexpip-clients-accounts-nodexpip-clients-activities-nodexpip-clients-email-nodexpip-clients-emailsettings-nodexpip-clients-msgdistribution-nodexpip-clients-msgtemplates-nodex@everything-registry/sub-chunk-2439pip-services3-gcp-nodexpip-services3-grpc-nodexpip-services3-kafka-nodexpip-services3-memcached-nodexpip-services3-messaging-nodexpip-services3-mongodb-nodexpip-services3-mqtt-nodexpip-services3-mysql-nodexpip-services3-couchbase-nodexpip-services3-data-nodexpip-services3-datadog-nodexpip-services-memcached-nodexpip-services3-elasticsearch-nodexpip-services3-expressions-nodexpip-services3-fluentd-nodexpip-services3-aws-nodexpip-services3-azure-nodexpip-services3-cassandra-nodexpip-services3-components-nodexpip-services3-container-nodexpip-services3-nats-nodexpip-services3-postgres-nodexpip-services3-prometheus-nodexpip-services3-rabbitmq-nodexpip-services3-redis-nodexpip-services3-rpc-nodexpip-services3-sqlite-nodexpip-services3-sqlserver-nodexpip-services3-swagger-nodexpip-services3-vault-nodexpip-services-datadog-nodexpip-services-elasticsearch-nodexprocess-postscontroller-nodeservice-tags-nodeservice-tips-nodeservice-clusters-nodeservice-comments-nodeservice-creditcards-nodeservice-dashboards-nodeservice-data-pipservicesservice-sessions-nodeservice-settings-nodeservice-sms-nodeservice-smssettings-nodeservice-statistics-nodeservice-purchaseorders-nodeservice-pushnotifications-nodeservice-quotes-nodeservice-reviews-nodeservice-roles-nodeservice-ruledefinitions-nodeservice-retries-nodeservice-processstates-nodeservice-announcements-nodeservice-applications-nodeservice-areamap-nodeservice-attachments-nodeservice-blobs-nodeservice-changescopes-nodeservice-accounts-nodeservice-activities-nodeservice-email-nodeservice-emailsettings-nodeservice-emailtemplates-nodeservice-eventlog-nodeservice-facets-nodeservice-locks-nodeservice-mappings-nodeservice-invitations-nodeservice-jobs-nodeservice-firemap-nodeservice-guides-nodeservice-help-nodeservice-metrics-nodeservice-microfrontends-nodeservice-imagesets-nodeservice-msgtemplates-node
1.0.4

1 year ago

1.0.3

2 years ago

1.0.1

3 years ago

1.0.0

3 years ago