Skip to content

A data adapter that uses the NodeJS built-in https library to convert a Request into a Response.

License

Notifications You must be signed in to change notification settings

paychex/adapter-node

Repository files navigation

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

About

A data adapter that uses the NodeJS built-in https library to convert a Request into a Response.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published