npm發包實踐使用gRPC教程

1、目的

  • 實現將自己的一些工具或者 demo 作品 放到 npm 幫助更多開發者理解和學習,構建強大的學習生態
  • 可以直接 安裝到你的項目中,入門級理解 gRPC

2、步驟

1、敲這個 命令  輸入 npm 上註冊的 username password 還有郵箱

npm adduser –registry https://registry.npmjs.org/

2、敲這個 

npm publish –registry https://registry.npmjs.org/

3、結果

這個包的地址

www.npmjs.com/package/grp…

4、package.json 參考

{
  "name": "grpc-node-demo",
  "version": "1.2.0",
  "main": "index.js",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1",
    "start": "node server.js",
    "client": "node client.js"
  },
  "keywords": [
    "grpc",
    "node",
    "demo"
  ],
  "author": {
    "name": "Mark_Fu",
    "weChat": "getXiLan",
    "url": "https://juejin.cn/user/1741228277763278"
  },
  "license": "ISC",
  "dependencies": {
    "@grpc/proto-loader": "^0.7.0",
    "grpc": "^1.24.11"
  },
  "devDependencies": {},
  "description": "To help you quickly create a new Node-GrPC server and understand GRPC quickly, this is a best practice for understanding GRPC",
  "repository": {
    "type": "git",
    "url": "https://github.com/huanhunmao/grpc-node-demo"
  },
  "homepage": "https://github.com/huanhunmao"
}

ps:

為啥命令 後面需要帶 –registry registry.npmjs.org/ 因為 我這邊 設置瞭全局淘寶源(公司 npm 在淘寶源,這樣處理最簡單,發佈公司的 npm 包 直接 npm publish 即可)

以上就是npm發包實踐使用gRPC教程的詳細內容,更多關於npm發包gRPC使用的資料請關註WalkonNet其它相關文章!

推薦閱讀: