Skip to content

simwood/node-kiss-argv

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

kiss-argv

Simple, stupid ARVG parsing.

Installation

npm install kiss-argv

Example

parseme.js

"use strict";
var argv = require('kiss-argv');

node parseme.js --hello world --array one two three --sentence "yeah yeah one two"

{ hello: 'world',
  array: [ 'one', 'two', 'three' ],
  sentence: 'yeah yeah one two' }

That's it.

Contributing

Open an issue if things don't work right.

About

No frills argv parser

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published