0.22.2 • Published 3 years ago
pipeforce-sdk-node v0.22.2
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();