@paychex/platform-browser

2.0.8 • Public • Published

@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
[crossOrigin]{@link module:crossOrigin} Enables safe asynchronous communication across different origins.
[stores]{@link module:stores} Provides browser-specific Stores to persist and retrieve data on the user's machine.

Package Sidebar

Install

npm i @paychex/platform-browser

Weekly Downloads

1

Version

2.0.8

License

Apache-2.0

Unpacked Size

1.45 MB

Total Files

50

Last publish

Collaborators

  • paychex-ssmithrand
  • dbarnes1
  • best442
  • dhergert-payx