ArmorJS solves unique challenges in the enterprise node ecosystem. Auditing projects for security, reliability, and even license compatibility are monumental tasks when a project includes thousands of frequently changing dependencies.
ArmorJS standards:
- Full typescript support.
- Consistent API between releases.
- Extremely small footprint (for webpacking).
- No more than 5 external dependencies (excluding dev dependencies).
- Compatible with web, node, and serverless deployment.
- Thorough test coverage.
- MIT License.
With yarn (preferred):
yarn add @armorjs/headless
With NPM:
npm install @armorjs/headless
import { ArmorHeadless } from '@armorjs/headless';
const ArmorHeadless = require('@armorjs/headless');
Build (or rebuild) the config package:
With Yarn (preferred):
yarn install
yarn build
With NPM:
npm install
npm run-script build
Headless implements unit tests using jest. Run the following commands from the directory where headless has been installed.
With yarn (preferred):
yarn install
yarn test
With NPM:
npm install
npm run-script test
MIT © Michael Brich