pipeforce-sdk-node
TypeScript icon, indicating that this package has built-in type declarations

0.22.2 • Public • Published

PIPEFORCE SDK for Node.js

This library simplifies writing microservices based on Node.js for the PIPEFORCE platform.

PIPEFORCE is a workflow automation and application integration platform for enterprises.

Features

  • Build and execute command pipelines using a fluent API
  • Execute commands and pipelines
  • Automatic configuration of the underlying microservice
  • Consume and publish messages
  • Contains useful utilities

How to use it

Install it:

npm install pipeforce-sdk-node

Import it:

import {PipeforceService} from "pipeforce-sdk-node";

Use it to build and execute a pipeline:

import {PipeforceService} from "pipeforce-sdk-node";

let pipeforce = new PipeforceService();

let result = pipeforce.pipeline()
    .command("drive.read", {path: "/path/to/file.pdf"})
    .command("pdf.stamp", {text: "CONFIDENTIAL"})
    .command("drive.save", {path: "path/to/confidential.pdf"})
    .run();

Package Sidebar

Install

npm i pipeforce-sdk-node

Weekly Downloads

2

Version

0.22.2

License

Apache-2.0

Unpacked Size

1.96 kB

Total Files

2

Last publish

Collaborators

  • sniederm