Opaline – CLI工具框架 Opaline -CLI工具框架和编译器。 它从 (和类似项目)中汲取了灵感,并提供了一种基于约定的快速创建CLI工具的方法。 它在./commands文件夹中./commands文件,并将它们视为CLI的命令: commands └── build.ts # Means it can be run as following: λ cli build 命令文件必须导出一个函数(也可以是异步函数): export default function myCommand ( ) { } // or module . exports = async func