一、创建package.json
文件
命令:npm init
二、新建index.js
文件
function test(a, b) {
return a + b;
}
// 对外导出
module.exports = {
test: test,
};
三、发布npm
包
1. 注册npm
账号
2. 登录npm
账号
如果账号和密码都正确,但是提示登录失败
可检查当前源是否是官方镜像
查看当前源:npm config get registry
设置官方镜像:npm config set registry https://registry.npmjs.org
3. 发布
npm publish
包发布成功后,可在官网中查看
四、使用wii-upload
包
1. 下载
npm install wii-upload
2. 使用
// 引入包
import { test } from 'wii-upload'
export default {
name: 'App',
created() {
console.log('--------', test(10, 11))
}
}