@aschenoni/jargon
v0.1.0
Published
A simple argument parser using decorators
Downloads
3
Maintainers
Readme
@aschenoni/jargon
Just another arg parser. Uses decorators to create a straightforward but minimal mapping of cli arguments to a key value store.
Installation
This library is published in the NPM registry and can be installed using any compatible package manager.
npm install @aschenoni/jargon --save
# For Yarn, use the command below.
yarn add @aschenoni/jargon
Installation from CDN
This module has an UMD bundle available through JSDelivr and Unpkg CDNs.
<!-- For UNPKG use the code below. -->
<script src="https://unpkg.com/@aschenoni/jargon"></script>
<!-- For JSDelivr use the code below. -->
<script src="https://cdn.jsdelivr.net/npm/@aschenoni/jargon"></script>
<script>
// UMD module is exposed through the "jargon" global variable.
console.log(jargon);
</script>
Documentation
Documentation generated from source files by Typedoc.
License
Released under MIT License.