Options
All
  • Public
  • Public/Protected
  • All
Menu

@paychex/adapter-node

@paychex/adapter-node

A data adapter that uses the NodeJS built-in https library to convert a Request into a Response. Can be passed to the @paychex/core createDataLayer factory method to enable data operations on NodeJS.

Installation

npm install @paychex/adapter-node

Importing

esm

import { node } from '@paychex/adapter-node';

cjs

const { node } = require('@paychex/adapter-node');

Usage

import { data } from '@paychex/core';
import { node } from '@paychex/adapter-node';

const proxy = data.createProxy();
const { createRequest, fetch, setAdapter } = data.createDataLayer(proxy, node);