vpm
vpm是一个v语言包管理工具,它用v编写而成。
github地址:https://github.com/yue-best-practices/vpm
前置条件(Precondition)
V
语言版本(v0.1.13
)。
- 安装
git
,因为目前包是通过git clone
的方式下载的。 - 配置
VROOT
环境变量,内容指向v语言源码路径。
安装(Install)
- 在任意目录下,
git clone https://github.com/yue-best-practices/vpm
- 执行命令
v -prod .
即可编译出vpm
可执行程序
命令(Commands)
命令/Command | 参数/Params | 释义/Description |
---|---|---|
-v /version | 版本信息,目前版本是0.0.1 Show version,the current version is 0.0.1 | |
init | <project-name> | 创建.vpm.json 文件Create the .vpm.json file |
get | <git-url> <pkg-name> | 从<git-url> 中获取包。Fetch package from the git repo. |
install | 安装.vpm.json 文件中的包。Install the package from the .vpm.json file. | |
-h /help | 显示帮助信息。 Show help information. | |
clean | 删除.vpm.json 文件。Delete the .vpm.json file. |
vpm
笔者还会继续开发维护,如果大家使用过程中有什么问题,欢迎发送Email(或在QQ群中直接@我)向我反馈。
笔者编程菜鸟一枚,如有不足之处,欢迎大佬指正!