Skip to content

An independent "Command Line Argument" language based on the tokens recived from process.argv

License

Notifications You must be signed in to change notification settings

pouyakary/clavinet

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Clavinet

Clavinet is a command line argument parser with it's own language rules. It joins the given process.argv into a string and then parses it with it's own language grammar.

Language

Clavinet has these concepts:

  • Commands — Commands start with double dashes as --some-command-name and they can have a value after them separated by spaces like: --say hello, or --add [2, 3, 5]
  • Values — Values are Literals or Arrays
  • Array — Array is made of a sequence of Values separated by , and inside of square bracket. For example: [1, 2, 4, hello, [1, 3]]
  • Literals — Literals are numbers and words in this format: [a-zA-Z0-9_\./][a-zA-Z0-9_\.\-/]*

Building

You need to run npm install to install all the dependencies and you must have TypeScript installed on your system. After that you can build the package using

npm run build

How to use it?

First install it via

npm install --save clavinet

Then use it as:

const clavinet = require('clavinet')
const args = clavinet.Parse( )



About

An independent "Command Line Argument" language based on the tokens recived from process.argv

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages