cli-cmd-ast
TypeScript icon, indicating that this package has built-in type declarations

1.0.1 • Public • Published

Cli cmd ast

CLI command ast parser manipulate program bash powershell generic agnostic.

Please note that Cli cmd ast is currently under development and not yet suited for production

Installation

 $ npm i cli-cmd-ast

Usage

import { toAst, toCmd } from "cli-cmd-ast"

let yieldsAst = toAst(`npm "--org  google" cmd --flag --option1 val -v=1.1`)

yieldsAst = {
  cmds: [ 'npm', '--org  google', 'cmd' ],
  args: { flag: true, option1: 'val', v: 1.1 }
}

Note that the order of commands is not preserved, if one command is after a flag, as this information is not part of the ast.

let yieldsCmd = toCmd(yieldsAst)

yieldsCmd = `npm "--org  google" cmd --flag --option1 val -v=1.1`

Contribute

All feedback is appreciated. Create a pull request or write an issue.

Package Sidebar

Install

npm i cli-cmd-ast

Weekly Downloads

1

Version

1.0.1

License

ISC

Unpacked Size

11.8 kB

Total Files

8

Last publish

Collaborators

  • zzrv