0.0.5 • Published 2 years ago

@copart/web-app-utils v0.0.5

Weekly downloads
50
License
ISC
Repository
-
Last release
2 years ago

@copart/web-app-utils

npm version npm downloads

Will serve as a common library to provide utilities for next generation web apps built in Copart.

Usage

yarn add -S @copart/web-app-utils

import { storage, fetcher } from '@copart/web-app-utils'

storage.accessToken // returns access_token if present from local storage
storage.isAuthenticated // returns true/false if the user attempted verfication on login page

// Coming soon
fetcher[method]() // Extension of axios to automatically append authentication headers and 401 statuses
// Supported methods GET, POST, PUT, DELETE, PATCH

Contribution

Clone this repository and install its dependencies:

git clone https://github.com/comproui

yarn install && yarn tools:start

yarn build builds the library to dist, generating three files:

  • dist/web-app-utils.js

A CommonJS bundle, suitable for use in Node.js, that requires the external dependency. This corresponds to the "main" field in package.json

  • dist/web-app-utils.esm.js

an ES module bundle, suitable for use in other people's libraries and applications, that imports the external dependency. This corresponds to the "module" field in package.json

  • dist/web-app-utils.umd.js

a UMD build, suitable for use in any environment (including the browser, as a <script> tag), that includes the external dependency. This corresponds to the "browser" field in package.json

yarn dev builds the library, then keeps rebuilding it whenever the source files change using rollup-watch.

yarn test builds the library, then tests it.

0.0.4-alpha

2 years ago

0.0.5

2 years ago

1.0.0

3 years ago

0.0.4

4 years ago

0.0.3

4 years ago

0.0.2

4 years ago

0.0.1

4 years ago

0.0.1-alpha.2

4 years ago

0.0.1-alpha.3

4 years ago

0.0.1-alpha.1

4 years ago

0.0.1-alpha.0

4 years ago