故事背景
github: smart-import
smart-import 的功能
根据配置文件,在目标文件中自动导入规定目录下自定义模块,并监听规定目录下文件的变动,自动更新
尚在测试中
smart-import 的使用
安装工具
npm install smart-import -g
编写配置文件smart-import.json
{
"extname": ".vue",
"from": "demo/pages",
"to": "demo/router/index.js",
"template": "const moduleName = () => import(modulePath)",
"ignored": [
"demo/pages/pageA.vue",
"demo/pages/**/*.js"
]
}
extname:需要自动导入的模块的后缀名
from:自动导入的模块的来源目录
to:目标文件
template:导入方式的模版
ignored:需要忽略的模块
启动工具
在命令行输入
simport
smart-import 的诞生
smart-import作为命令行工具,和平常写网站还是有些不同的。
同样的部分,github建仓库,npm init
通过npm init
会生成package.json
文件,其中main字段的作用在于,如果你的代码最终作为一个模块被其他人import/require,那么这个文件就是这个模块的入口文件,可以参考node加载模块的机智
摘自npm官方文档
The main field is a module ID that is the primary entry point to your program. That is, if your package is namedfoo
, and a user installs it, and then doesrequire("foo")
, then your main module's exports object will be returned.This should be a module ID relative to the root of your package folder.
For most modules, it makes the most sense to have a main script and often not much else.
由于smart-import是一个命令行工具,并不会被其他人import/require,所以main字段可以忽略;而要注意的是bin字段
"bin": {
"simport": "./bin/index.js"
},
摘自npm官方文档
A lot of packages have one or more executable files that they'd like to install into the PATH. npm makes this pretty easy (in fact, it uses this feature to install the "npm" executable.)To use this, supply a
bin
field in your package.json which is a map of command name to local file name. On install, npm will symlink that file intoprefix/bin
for global installs, or./node_modules/.bin/
for local installs.
简单来说,就是将你的脚本放到环境变量中
而在你的脚本的第一行务必要加上
#!/usr/bin/env node
用于告诉计算机用 node 来运行这段脚本
在测试自己的脚本之前要把运行
npm install -g
把自己的脚本链接到环境变量中,不然会被告知该命令不存在
smart-import 的发布
先要有npm的账号
然后给package添件账号
npm adduser
之后可以通过npm whoami
来核实自己的账号信息
最后就是
npm publish
版本更新
npm version patch
npm publish
参考资料
https://docs.npmjs.com/files/...
https://developer.atlassian.c...
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。