npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

rindap

v1.1.1

Published

A Rindap helper library

Downloads

10

Readme

rindap-node

NPM

API description

The smarter way to automate business processes. RESTful API for Business Process Management: Automate without the need for complex integrations or high-cost software suites.

Rindap helps companies to increase their efficiency by offering developers a low-code BPM platform with RESTful API to automate business processes based on the requirements set by the management.

  • Easily automate repetitive tasks and asynchronous events without the need for intricate coding. Avoid chaos and inefficiencies.
  • Set business rules and decision criteria effortlessly without being bounded by complicated structures and frameworks.
  • Let developers leverage RESTful API to convey data and execute business decisions based on management requirements.
  • Avoid complex integration projects or adopting a new software platform to meet your business process management needs.
  • Focus on your core activities rather than lengthy project meetings about how to automate business processes.
  • Automate business processes across any system, device and software platform without any restrictions.

Utilize Drag & Drop interface

Utilize Drag & Drop interface to enjoy low-code workflow automation and benefit Rindap’s RESTful API to automate business processes without the need for any integration. Rindap’s easy-to-use drag & drop interface helps you to easily design your workflow as per your business cases’ requirements.

Once you assembled the big picture, leverage Rindap’s RESTful API as a hub that transfers data and allocates tasks to workers. Send calls with your tasks’ attributes from any application or device that takes part in your workflow to Rindap’s API and carry on with the response you get back according to the workflow you set.

The logic-based filters

You can automate workflows via logical filters that convey your attribute driven tasks to the right work queues which eventually matches the right worker. Yet the story does not simply end there! The task’s attributes get updated according to the workers’ responses and the progress continues to the next filter designated in the workflow. Hence you will be able to carry on the information within the workflow to the next steps and execute decisions automatically.

Adapt to realistic requirements

The workflow is not all about filters matching queues to allocate tasks to workers. Create realistic workflows by utilizing various functions. Set your processes according to your needs, not limitations.

  • Filter True/False: Let your workflow take alternative turns by setting different paths if certain conditions are met or unmet.
  • Loop: You can set a task to be on the loop until it is done.
  • Rate limit: Control task consumption by setting limits.
  • Delay: If some time is required before proceeding to the next step you can set delays.
  • Fork: You can set parallel workflows that run simultaneously by forking.

Metrics for continuous improvement

Rindap allows you to automate and get insights from your business processes as it aggregates all the task-related data. By identifying areas that you are good at or need to improve, you can easily fine-tune your processes.

Documentation

The documentation for the Rindap API can be found here.

The Node library documentation can be found here.

Versions

rindap-node uses a modified version of Semantic Versioning for all changes.

Supported Node.js Versions

This library supports the following Node.js implementations:

  • Node.js 6
  • Node.js 8
  • Node.js 10
  • Node.js 12
  • Node.js 13

Sample Usage

Check out these code examples in JavaScript to get up and running quickly.

Environment Variables

rindap-node supports credential storage in environment variables. If no credentials are provided when instantiating the Rindap client (e.g., const client = require('rindap')();), the values in following env vars will be used: ACCOUNT_SID and AUTH_TOKEN.

Lazy Loading

rindap-node supports lazy loading required modules for faster loading time. Lazy loading is disabled by default. To enable lazy loading, simply instantiate the Rindap client with the lazyLoading flag set to true:

var accountSid = process.env.ACCOUNT_SID; // Your Account SID from www.rindap.com/console
var authToken = process.env.AUTH_TOKEN;   // Your Auth Token from www.rindap.com/console

const client = require('rindap')(accountSid, authToken, { 
    lazyLoading: true 
});

Getting help

If you need help installing or using the library, please check the Rindap Support Help Center first, and file a support ticket if you don't find an answer to your question.

Getting Started

npm install rindap