diff --git a/README.md b/README.md index 8e9c637..b370607 100644 --- a/README.md +++ b/README.md @@ -5,11 +5,11 @@ Simple argv parser ## Motivation -I needed a new argv parser for a quick and dirty project I was working on -and evaluating and selecting the propper existing parser and then learining its -API, quirks and adapting the architecture to it seemd to be more complicated, -require more effort and far less fun than putting together a trivial parser -myself in a couple of hours. +I needed a new argv parser for a quick and dirty project I was working +on and evaluating and selecting the proper existing parser and then +learning its API, quirks and adapting the architecture to it seemed +to be more complicated, require more effort and far less fun than +putting together a trivial parser myself in a couple of hours. This code is an evolution of that parser. diff --git a/argv.js b/argv.js index 0dfe647..cbeeabc 100644 --- a/argv.js +++ b/argv.js @@ -1,5 +1,19 @@ /********************************************************************** * +* argv.js +* +* A simple argv parser +* +* Motivation: +* I needed a new argv parser for a quick and dirty project I was working +* on and evaluating and selecting the proper existing parser and then +* learning its API, quirks and adapting the architecture to it seemed +* to be more complicated, require more effort and far less fun than +* putting together a trivial parser myself in a couple of hours. +* This code is an evolution of that parser. +* +* Repo and docs: +* https://github.com/flynx/argv.js * * **********************************************************************/