0.0.1 • Published 1 year ago

@nianyi-wang/cli v0.0.1

Weekly downloads
-
License
-
Repository
-
Last release
1 year ago

cli-js

This is a NodeJS package for quickly implementing a CLI interface for your application. It is written in the ES Module style.

Installation

$ npm i @nianyi-wang/cli

Usage

import { CLI } from '@nianyi-wang/cli';

new CLI({
	options: [
		{
			name: 'out',
			shortNames: 'o',
			argumentCount: 1
		},
	],
	handler() {
		const inSrc = this.arguments[0];
		const outSrc = this.GetSingle('out');
		console.log(`${inSrc} => ${outSrc}`);
	}
}).Execute();