npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

template-library-cli

v1.1.1

Published

模板库命令行工具:根据模板中模板生成(文件|文件夹)

Downloads

3

Readme

template-library-cli

npm downloads GitHub

帮你组织并运用你所积累的模板库。

当我们已经积累了一些开发和业务经验时,也许我们该为自己准备一些项目或文件模板,在下一次开发类似功能时以供拷贝使用,然而即使准备了些模板,在使用时,却还需要经历 离开当前的位置找到模板的位置 复制后再 找到要粘贴的位置 这种繁琐的操作,此时如果我们能通过在当前界面的命令行一个命令便能将模板库中指定的模板放到指定的位置,那岂不是更高效?

嗯, 这正是此 模板库工具 能做的一些事情。

安装

npm install -g template-library-cli

yarn global add template-library-cli

安装之后,你就可以在命令行中访问 tlc 命令。你可以通过简单运行 tlc,看看是否展示出了一份所有可用命令的帮助信息,来验证它是否安装成功

你还可以用这个命令来检查其版本是否正确:

tlc --version

使用

为了方便演示,案例均采用以下仓库作为我们的远程模板库

业务文件模板仓库vue-file-template:作为你所在公司积累的vue相关通用业务模板

开源知名项目仓库vue-admin-template:作为你所在公司的后台管理系统基础架构模板

克隆

tlc clone|c [options] <repository> [name] [desc]

作用:
    克隆远程仓库作为本地模板库,并生成相关配置信息

参数:
    repository      远程模板仓库地址
    name            克隆到本地后的仓库名称,默认为原始仓库名
    desc            对本仓库的简短描述
选项:
    -a, --app       此仓库作为应用项目模板仓库
    -f, --file      此仓库作为业务文件模板仓库
    -h, --help      显示此命令的帮助信息

案例 1:克隆一个业务文件模板库到本地

tlc clone https://github.com/friendlysxw/vue-file-templates.git 

值得注意的是:在克隆 业务文件 [file] 类型的模板仓库时,此仓库根目录需要有一个 tlc-config.json 配置文件,并且其中应该存储当前仓库中的模板信息,格式如下:

{
    "templates":[
        {
            "name":"模板的名称",
            "desc":"模板的简短描述",
            "path":"模板在当前仓库中的路径 ( 文件路径 | 目录路径 )"
        }
    ]
}

clone-file.gif

案例 2:克隆一个应用项目模板库到本地

tlc clone https://github.com/PanJiaChen/vue-admin-template.git

clone-app.gif

或者您可以一次性拼写更完整的指令(相同的效果但交互更少)

tlc clone https://github.com/friendlysxw/vue-file-templates.git vue-file-templates vue相关通用业务文件模板 --file

tlc clone https://github.com/PanJiaChen/vue-admin-template.git vue-admin vue后台管理系统基础架构模板 --app

生成

tlc generate|g [options] <temp-type> [temp-name] [new-name]

作用:
    根据模板生成(应用项目|业务文件)

参数:
    temp-type       模板类型 (可选: "app", "file")
    temp-name       模板名称
    new-name        生成(应用项目|业务文件)的新名称
选项:
    -h, --help      显示此命令的帮助信息

案例 1:在我们的项目中生成业务文件

tlc generate file 或 tlc g file

generate-file.gif

案例 2:初始化生成一个应用项目

tlc generate app 或 tlc g app

generate-app.gif

  • 或者您可以一次性拼写更完整的指令(相同的效果但交互更少)
tlc generate app vue-admin myVueApp
tlc generate file vue-file-templates:table user-list

列表

tlc list|l [options]

作用:
    查看本地(仓库|模板)信息, 以表格形式展示

选项:
    -r, --repository    查看仓库列表信息
    -t, --template      查看模板列表信息
    -h, --help      显示此命令的帮助信息

更新

tlc pull|p [options] [repo-name]

作用:
    拉取模板仓库的最新内容,此操作会同步更新本地配置信息

参数:
    repo-name       本地仓库名称
选项:
    -h, --help      显示此命令的帮助信息

删除

tlc delete|d [options] [name]

作用:
    删除本地的一个(仓库|模板)

参数:
    name                本地(仓库|模板)名称
选项:
    -r, --repository    删除的是仓库
    -t, --template      删除的是模板
    -h, --help          显示此命令的帮助信息

TODO

  • 添加变量解析功能(在模板中定义一些占位符,在生成代码时动态替换占位符的内容)