0.3.12 • Published 5 years ago

@rawcmd/core v0.3.12

Weekly downloads
24
License
MIT
Repository
github
Last release
5 years ago

Rawcmd core package.

Rawcmd allows for building command-line user interfaces in NodeJS. It's a lightweight and open-source framework, written with TypeScript. It's actively maintained, well tested and already used in production environments. The source code is available on GitHub where you can also find our issue tracker.

Example

const command = new Command({
  name: '',
  alias: '',
  description: '',
  summary: '',
  options: [
    new Option({
      name,
      alias,
      description,
      parser,
      validators,
    }),
  ],
  commands: [
    new Command({}),
  ],
  resolver(input) { ... },
});
command.perform(
  process.argv[2],
);
0.3.12

5 years ago

0.3.11

5 years ago

0.3.10

5 years ago

0.3.9

5 years ago

0.3.8

5 years ago

0.3.7

5 years ago

0.3.6

5 years ago

0.3.5

5 years ago

0.3.4

5 years ago

0.3.3

5 years ago

0.3.2

5 years ago

0.3.1

5 years ago

0.3.0

5 years ago

0.2.2

5 years ago

0.2.1

5 years ago

0.2.0

5 years ago

0.1.7

5 years ago

0.1.6

5 years ago

0.1.5

5 years ago

0.1.4

5 years ago

0.1.3

5 years ago

0.1.2

5 years ago

0.1.1

5 years ago

0.1.0

5 years ago