Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@tikkhun/cli-core

Package Overview
Dependencies
Maintainers
0
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@tikkhun/cli-core

用于创建cli的简便工具

  • 0.0.16
  • latest
  • npm
  • Socket score

Version published
Maintainers
0
Created
Source

cli-core

用于创建cli的简便工具

使用 cli-core 配置自己的 cli 工具

import { Command } from '../lib';
const cli = new Command({
  // 版本
  version: '1.1.1',
  // 描述
  description: 'hahaha',
  // 默认选项
  defaultOptions: {
    n: 1,
    s: '123',
    b: true,
    o: {
      n: 1,
      s: '123',
      b: true,
    },
  },
  // 排除选项
  excludeOptions: ['o.b'],
  // 选项类型
  optionTypes: {
    n: 'number',
    s: 'string',
    b: 'boolean',
    o: {
      n: 'number',
      s: 'string',
      b: 'boolean',
    },
  },
  // 选项标题
  optionTitles: {
    n: 'numbertitle',
    s: 'stringtitle',
    b: 'booleantitle',
    o: {
      n: 'numbertitleooo',
      s: 'stringtitleooo',
      b: 'booleantitleooo',
    },
  },
});
// 开始运行
cli.start((option) => {
  // 取出选项并执行相应逻辑
  console.log(`option`, option);
});

不同的形式

获取参数的形式有多种形式

  • 命令行传参(args)
  • 问答式(prompts)
  • 配置文件(config)

你可以通过new Cli的 option 中的types 去决定启用哪几种功能形式

命令行传参形式

xxx-cli  --help # 可查看全部命令行参数

问答式

xxx-cli prompts # 即可进入问答列表

外部配置文件

初始化配置文件
xxx-cli config init -p xxx.config.json # 生成配置文件到本地
使用配置文件来执行
xxx-cli config -c xxx.config.json # 将  xxx.config.json 作为配置文件将配置导入

FAQs

Package last updated on 24 Oct 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc