Options
All
  • Public
  • Public/Protected
  • All
Menu

@paychex/platform-browser

@paychex/platform-browser

Provides agnostic JavaScript functionality for use in all browser-based applications.

Installation

npm install @paychex/platform-browser

Importing

esm

import { crossOrigin, stores } from '@paychex/platform-browser';

cjs

const { crossOrigin, stores } = require('@paychex/platform-browser');

amd

define(['@paychex/platform-browser'], function(browser) { ... });
define(['@paychex/platform-browser'], function({ crossOrigin, stores }) { ... });
require(['@paychex/platform-browser'], function(browser) { ... });
require(['@paychex/platform-browser'], function({ crossOrigin, stores }) { ... });

iife (browser)

const { crossOrigin, stores } = window['@paychex/platform-browser'];

Commands

To install the necessary dependencies:

npm install

To generate documentation files:

npm run docs

Modules

The @paychex/platform-browser library contains functionality separated into various modules:

name description
utils A collection of helpful utilities
crossOrigin Enables safe asynchronous communication across different origins.
stores Provides browser-specific Stores to persist and retrieve data on the user's machine.