目录结构小工具 treer

  最近写了几个 npm 包,发现了一个比较好用的目录结构小工具 treer

1、安装

  建议在全局安装,无需写到 package.json。

1
npm i treer -g

2、使用

  项目路径内,输入:

1
treer -e ./result.txt -i '/node_modules|.git|.idea|.DS_Store/'

3、处理

  会在项目路径下生成一个result.txt文件,稍微处理一下即可得到美观的目录结构

1
2
3
4
5
6
7
8
9
10
11
12
syvue-cli
├─.gitignore
├─README.md
├─package-lock.json
├─package.json
├─bin
| ├─index.js
| ├─tools
| | ├─index.js
| | └templateConfig.js
| ├─actions
| | └create.js
以上

随笔标题:目录结构小工具 treer

随笔作者:刘先玉

发布时间:2020年08月25日 - 15:57:57

最后更新:2020年08月25日 - 15:57:57

原文链接:https://liuxianyu.cn/article/project-treer.html