解锁开发新姿势:自定义CLI脚手架实战教程
开始一个新的软件项目可能是一个耗时且重复的过程。开发人员通常需要创建项目结构并包含各种配置文件和依赖项才能使项目运行。这些需求通常称为样板代码,可以跨项目重用。虽然许多框架提供 CLI 命令来简化启动项目的过程,但它们可能无法涵盖所有用例。
例如,开发人员可能需要重用以前编写的代码,例如 linting 配置、数据库配置和相关代码片段。对每个项目重复这些任务可能会带来压力并且容易出错。简化流程的一种方法是创建一个 CLI 工具,根据特定需求生成项目启动器和代码片段。
CLI 脚手架工作流程设计
相信大家都用过Vue cli , 或者 create-react-app . 这些比较知名的项目脚手架。 我们根据使用的过程,可以把一个CLI 脚手架的工作过程分为 输入询问、 结果拼装、 拉取代码、 代码后处理那么几部分。
基础准备
请确保您在开始之前已经对 node.js 有了一个基本的了解。 本文所用到的技术 和 周边库如下所示。
- NodeJS
- JavaScript
- NPM
- fs-extra
- simple-git
- commander
创建你的cli 工具
- 初始化工程
首先,我们要初始化一个新的node.js 项目, 通过 npm init 初始化一个默认的 package.json
文件。 打开你的终端,输入以下命令:
1mkdir my-cli-tool
2cd my-cli-tool
3npm init -y
- 添加依赖
接下来,我们需要安装一些依赖库。我们将使用 commander
来处理命令行参数和选项,使用 simple-git
来操作 Git 仓库,还将使用 fs-extra
来处理文件系统操作。
1npm install commander simple-git fs-extra
- 编写 CLi 脚本
在项目根目录下创建一个名为 index.js
的文件,并在文件顶部添加以下内容:
1#!/usr/bin/env node
2
3const { Command } = require('commander');
4const simpleGit = require('simple-git');
5const path = require('path');
6const fs = require('fs-extra');
7
8const program = new Command();
这段代码引入了必要的模块,并创建了一个新的 Command
实例。
- 实现核心功能
1#!/usr/bin/env node
2
3const { Command } = require('commander');
4const simpleGit = require('simple-git');
5const path = require('path');
6const fs = require('fs-extra');
7
8const program = new Command();
9
10/**
11 * 从 gitlab 或者github 创建一个项目模板
12 * @param {string} projectName - 项目名称
13 * @returns {Promise<CreateProjectResult>}
14 */
15const createProject = async (projectName) => {
16 const git = simpleGit();
17 const repoUrl = 'https://gitlab.com/your-username/your-template-repo.git';
18 const targetPath = path.join(process.cwd(), projectName);
19
20 try {
21 console.log(`Cloning template from ${repoUrl}...`);
22 await git.clone(repoUrl, targetPath);
23 console.log('Template cloned successfully.');
24
25 /**
26 * 因为,通过simpleGit 的clone 命令, 下载下来的模板,git 信息是指向模板库的,
27 * 所以我们需要通过 代码后处理 删除.git 目录并初始化为一个空的git 工程
28 */
29 await fs.remove(path.join(targetPath, '.git'));
30 console.log('.git directory removed.');
31
32 // 初始化成全新的git 项目
33 await git.cwd(targetPath).init();
34 console.log('Initialized a new git repository.');
35
36 console.log(`Project created at ${targetPath}`);
37 return { success: true, message: `Project created at ${targetPath}` };
38 } catch (error) {
39 console.error('Failed to clone template:', error);
40 return { success: false, message: 'Failed to clone template', error };
41 }
42};
43
44program
45 .version('1.0.0')
46 .description('CLI tool for creating projects from GitLab templates');
47
48program
49 .command('create <project-name>')
50 .description('Create a new project from the GitLab template')
51 .action(async (projectName) => {
52 const result = await createProject(projectName);
53 if (result.success) {
54 console.log(result.message);
55 } else {
56 console.error(result.message);
57 if (result.error) {
58 console.error(result.error);
59 }
60 }
61 });
62
63program.parse(process.argv);
如上代码, 我们通过 simpleGit 工具,从模板库中下载并初始化了一个全新的git 项目。
- 测试 - 本地调试
我们要进行调试, 首先应该在 package.json 中,指定可运行脚本。 如下所示:
1{
2 "name": "xxx-cli",
3 "author": "Sean.shi"
4 "bin": {
5 "my-cli-tool": "./index.js"
6 },
7 ...
8 ...
9}
通过 npm link 命令在本地链接你的 CLI 工具以进行测试:
1npm link
现在,你可以使用以下命令来测试你的 CLI 工具:
1my-cli-tool create test-creat
总结
通过以上步骤,我们成功打造了一个通用的 Node.js CLI 脚手架工具。这个工具可以极大地提升我们创建新项目的效率,并且可以根据需要进行扩展和自定义。希望这篇文章对你有所帮助,祝你开发顺利!
当然,我们还可以通过,colors.js 去把我们的日志做的更美观。 但那不在本文讨论范围内。
转载自:https://juejin.cn/post/7391700919396139058