介绍
hubot-stenog 是一个基于 Hubot 的命令行文本缩写扩展包。它可以让你快速输入一些常见的缩写,提高工作效率。本文将详细介绍如何使用该包。
安装
npm install hubot-stenog --save
使用
在 Hubot 的脚本中引入 hubot-stenog 包并注册。
var Stenog = require('hubot-stenog'); var stenog = new Stenog(robot); stenog.attachListeners();
这样就完成了 hubot-stenog 的安装和启用。
命令详解
hubot-stenog 支持以下几种命令:
add
添加一个新的缩写。
hubot add [name] [value]
比如:
hubot add tb taobao.com
这样就会添加一个缩写 tb
,将会被替换为 taobao.com
。
remove
删除一个已有的缩写。
hubot remove [name]
比如:
hubot remove tc
这样就会删除一个缩写 tc
。
list
列出已经添加的缩写。
hubot list
比如:
hubot list
这样就会列出所有已添加的缩写。
version
查看当前的 hubot-stenog 版本。
hubot version
比如:
hubot version
这样就会返回当前的 hubot-stenog 版本号。
示例代码
-- -------------------- ---- ------- --- ------ - ------------------------ --- ------ - --- -------------- ------------------------- -- ------ ------------------ ---- ------ ------------- - --- ---- - ------------- --- ----- - ------------- ---------------------- ------- ---------------- - - ---- - -- - - ------- --- -- ------ --------------------- ------ ------------- - --- ---- - ------------- -------------------------- ---------------- - - ------ --- -- ------ --------------------- ------------- - --- ------- - ------------------------------ --- ------------------ - - --------- --- -- ------- ------------------------ ------------- - ----------------- - - ---------------- ---
总结
通过本文的学习,我们已经掌握了如何使用 hubot-stenog 包进行命令行文本缩写。可以根据自己的需求添加、删除、查看缩写。hubot-stenog 能够帮助我们提高工作效率,非常实用。
来源:JavaScript中文网 ,转载请注明来源 https://www.javascriptcn.com/post/600671cc30d092702382284d