Shared constants for the Pearpass repositories.
This library provides a centralized collection of constants used across the Pearpass ecosystem.
To install the package, you can use npm or yarn:
npm install pearpass-lib-constantsor
yarn add pearpass-lib-constantsThis project uses ESLint for linting. To run the linter, execute the following command:
npm run lintHere is an example of how to import and use a constant from this library:
import { MS_PER_DAY } from 'pearpass-lib-constants';
function isOlderThanADay(timestamp) {
return Date.now() - timestamp > MS_PER_DAY;
}This library has no production dependencies.
- tether-dev-docs
- pearpass-app-mobile - A mobile app for PearPass, a password manager
- pearpass-app-browser-extension - A browser extension for PearPass, a password manager
- pearpass-app-desktop - A desktop app for PearPass, a password manager
This project is licensed under the Apache License, Version 2.0. See the LICENSE file for details.