You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

quidproquo-actionprocessor-js

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

quidproquo-actionprocessor-js

The `quidproquo-actionprocessor-js` library provides a set of generic action processors for the `quidproquo` framework, allowing you to easily integrate common functionality into your Node.js-based applications.

0.0.255
latest
Source
npmnpm
Version published
Weekly downloads
1
-90%
Maintainers
1
Weekly downloads
 
Created
Source

quidproquo-actionprocessor-js

The quidproquo-actionprocessor-js library provides a set of generic action processors for the quidproquo framework, allowing you to easily integrate common functionality into your Node.js-based applications.

Key Features

  • Comprehensive Action Processors: This library includes a wide range of action processors that cover various common use cases, such as date/time operations, error handling, event processing, GUID generation, logging, math operations, network requests, platform-specific functionality (e.g., delays), and system-level actions.

  • Extensibility: The action processor architecture is designed to be highly extensible, allowing you to easily add custom action processors to meet your specific requirements.

  • Dependency Injection: The action processors are integrated with the quidproquo dependency injection system, making it easy to compose and test your application components.

  • Testability: The action-oriented architecture and asynchronous execution model of quidproquo-actionprocessor-js make it highly testable, with support for unit, integration, and end-to-end testing.

  • Portability: While the quidproquo-actionprocessor-js library is designed to run on Node.js, the underlying quidproquo-core library is platform-agnostic, allowing you to potentially use these action processors in other environments as well.

Getting Started

To use the quidproquo-actionprocessor-js library, you'll need to install the package and its dependencies. You can do this using your preferred package manager, such as npm or yarn:

npm install quidproquo-actionprocessor-js

Once you have the package installed, you can start using the provided action processors in your quidproquo-based application. The library exports a set of action processors that you can import and use in your code.

Action Processors

The quidproquo-actionprocessor-js library provides the following action processors:

  • Date/Time Action Processors:
  • DateNowActionProcessor: Retrieves the current date and time as an ISO string.
  • Error Action Processors:
  • ErrorThrowErrorActionProcessor: Throws a custom error with a specified type, text, and stack trace.
  • Event Action Processors:
  • (No event-specific action processors are currently implemented)
  • GUID Action Processors:
  • GuidNewActionProcessor: Generates a new UUID.
  • Logging Action Processors:
  • LogCreateActionProcessor: Logs a message with a specified log level and optional data.
  • Math Action Processors:
  • MathRandomNumberActionProcessor: Generates a random number.
  • Network Action Processors:
  • NetworkRequestActionProcessor: Performs an HTTP request with various options (method, headers, body, etc.).
  • Platform Action Processors:
  • PlatformDelayActionProcessor: Delays the execution for a specified number of milliseconds.
  • System Action Processors:
  • SystemBatchActionProcessor: Executes a batch of actions and returns the results.
  • User Directory Action Processors:
  • (No user directory-specific action processors are currently implemented)

Usage

To use the action processors provided by quidproquo-actionprocessor-js, you can import them into your quidproquo-based application and integrate them with your action processor configuration. Here's an example of how you might use the DateNowActionProcessor:

import { DateNowActionProcessor, actionResult, DateActionType } from 'quidproquo-actionprocessor-js';

const processDateNow: DateNowActionProcessor = async () => {
  return actionResult(new Date().toISOString());
};

export default {
  [DateActionType.Now]: processDateNow,
};

In this example, we define a DateNowActionProcessor function that returns the current date and time as an ISO string. We then export this processor under the DateActionType.Now action type, which can be used in our quidproquo-based application.

Contribution and Development

If you'd like to contribute to the development of quidproquo-actionprocessor-js, please refer to the contributing guidelines for more information.

License

quidproquo-actionprocessor-js is licensed under the MIT License.

Warning: Not for Production

This project is currently under active development and should not be used in production environments. The APIs and functionality are subject to change without notice.

FAQs

Package last updated on 27 Mar 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts