一、創(chuàng)建package.json
文件
命令:npm init
二扛或、新建index.js
文件
function test(a, b) {
return a + b;
}
// 對外導出
module.exports = {
test: test,
};
三、發(fā)布npm
包
1. 注冊npm
賬號
2. 登錄npm
賬號
如果賬號和密碼都正確碘饼,但是提示登錄失敗
可檢查當前源是否是官方鏡像
查看當前源:npm config get registry
設置官方鏡像:npm config set registry https://registry.npmjs.org
3. 發(fā)布
npm publish
包發(fā)布成功后熙兔,可在官網(wǎng)中查看
四悲伶、使用wii-upload
包
1. 下載
npm install wii-upload
2. 使用
// 引入包
import { test } from 'wii-upload'
export default {
name: 'App',
created() {
console.log('--------', test(10, 11))
}
}