1 Star 0 Fork 0

异世界的前端工程师/node-todo-2

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
cli.js 648 Bytes
一键复制 编辑 原始数据 按行查看 历史
异世界的前端工程师 提交于 2021-03-27 10:24 . init
const program = require('commander');
const api = require("./index.js")
program
.option('-x, --xxx', 'what the x')
program
.command('add')
.description('add a task')
.action(async (...args) => {
const words = args.slice(0, -1).join(" ")
await api.add(words).then(() => {
console.log("添加成功")
void api.showAll()
})
});
program
.command('clear')
.description('clear all tasks')
.action(async () => {
await api.clear().then(() => {
console.log('清除成功')
})
});
program.parse(process.argv);
if (process.argv.length === 2) {
void api.showAll()
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wu-sili/node-todo-2.git
git@gitee.com:wu-sili/node-todo-2.git
wu-sili
node-todo-2
node-todo-2
master

搜索帮助