2.1.7 • Published 3 years ago

@paychex/adapter-node v2.1.7

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
3 years ago

@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);