如何使用npm 構(gòu)建一個(gè)自己的包,讓別人用 npm 直接 intsall 就可以下載媒抠。
項(xiàng)目結(jié)構(gòu):
? ? npm init 初始化一個(gè)package.json
? ??{
????????"name": "get-number-code", // 發(fā)布包的名字
? ????????"version": "1.0.8", // 發(fā)布版本號(hào)弟断,每次迭代,需手動(dòng)更改
? ? ? ? ? "description": "This is a front-end verification code", // 描述
? ????????"main": "./dist/numCode.chunk.js", // 指向文件
????????? "keywords": [ // 關(guān)鍵字 趴生,讓別人很快搜索
????????????????"es6",
? ????????????? "canvas"
????????? ],
????????? "scripts": {
????????????????"test": "echo \"Error: no test specified\"&& exit 1"
? ????????},
? ????????"repository": { // git 地址
????????????????"type": "git",
? ? ? ? ? ? ? ? ? ?"url": "https://github.com/Mrangmaomao/getNumberCode.git"
? ????????},
????????? "author": "wangmao", // 作者
? ????????"license": "ISC",
}
npm 使用
第一步阀趴,首先你得有一個(gè) npm 的賬號(hào),注冊地址:https://www.npmjs.com/
第二步苍匆,在命令行中輸入 npm login刘急,登陸,可使用 npm who 查看登陸是否成功
第三步浸踩, 使用npm publish 叔汁。