create-vue-monorepo-rs

A tool to quickly build a Vue workspace project managed by pnpm.

Refactor the create-vue-monorepo CLI library using Rust. The original library was built using ESM.

| 技术栈 | 版本 | | :--------- | :------ | | rust | 1.67.1 | | dialoguer | 0.10.3 | | console | 0.15.5 | | termcolor | 1.2.0 | | regex | 1.7.3 | | serde_json | 1.0.159 | | git2 | 0.17.0 |

使用

目前仅支持cargo install安装方式

shell cargo install create-vue-monorepo-rs

```shell

输入create-vue-monorepo-rs,按回车键即可

create-vue-monorepo-rs ```

演示

开发指南

```shell git clone https://github.com/laqudee/create-vue-monorepo-rs.git

cd create-vue-monorepo-rs

cargo install

cargo run ```

shell cargo build --release

shell cargo publish

构建过程

  1. 首先将模板template放到根目录下,分为basecodeconfig这三个子目录,根据选择的配置不同,进行渲染。
  2. 使用dialoguer库,生成命令行配置选择
  3. 根据选择的配置,执行render()函数进行渲染
  4. 使用git2库初始化 git
  5. 渲染完成,输出提示信息
  6. 退出程序

待解决的问题

  1. [x] ~~使用 Rust 操作文件及目录~~
  2. [x] ~~文件渲染~~
  3. [ ] 命令打包的方式及提供几种构建方式
  4. [ ] git2库没有生效
  5. [ ] 生成的package.json内容按照字母顺序排序了,不符合正常的package.json顺序
  6. [ ] 是否转为 npm 命令

使用Rust写的CLI工具库

已经发布的Crate包

原版使用JavaScript写的CLI工具库

已经发布的NPM包