如何用pkg打包nodejs可執行檔?以下這篇文章跟大家介紹一下使用pkg將Node專案打包為執行檔的方法,希望對大家有幫助!
使用pkg可以將Node.js專案打包為可執行文件,甚至可以在未安裝Node.js的裝置上運行。 【相關教學推薦:nodejs影片教學】
實驗環境
##作業過程
$ npm install -g pkg
const express = require('express'); const app = express(); app.get('/', (req, res) => { res.send('Hello World!'); }); app.listen(3000, () => { console.log('Express web app on localhost:3000'); });
進入nodejs專案根目錄,執行如下指令
$ pkg server.js
這時候會報錯
$ pkg server.js > pkg@5.6.0 > Targets not specified. Assuming: node16-linux-x64, node16-macos-x64, node16-win-x64 > Fetching base Node.js binaries to PKG_CACHE_PATH fetched-v16.14.2-linux-x64 [ ] 0%> Not found in remote cache: {"tag":"v3.3","name":"node-v16.14.2-linux-x64"} > Building base binary from source: built-v16.14.2-linux-x64 > Error! Not able to build for 'linux' here, only for 'win'
大意是,當前環境只支援編譯為windows系統的可執行文件,也就是win
調整指令為:
$ pkg -t win server.js
其中-t win等同於--targets win,也就是說只為windows編譯檔。
第二次報錯編譯時候再報錯:
$ pkg -t win server.js > pkg@5.6.0 > Fetching base Node.js binaries to PKG_CACHE_PATH fetched-v16.14.2-win-x64 [ ] 0%> Not found in remote cache: {"tag":"v3.3","name":"node-v16.14.2-win-x64"} > Building base binary from source: built-v16.14.2-win-x64 > Fetching Node.js source archive from nodejs.org... > Error! AssertionError [ERR_ASSERTION]: The expression evaluated to a falsy value:
大意是快取裡缺少對應的二進位檔案fetched-v16.14.2-win -x64,咱們只要下載到對應的文件,放到對應的快取目錄就好。
1、去
官網下載對應版本文件,例如我的是node-v16.14.2-win-x64官網網址:https://github.com /vercel/pkg-fetch/releases
2、將上一個步驟下載的檔案node-v16.14.2-win-x64重新命名為fetched-v16.14.2-win -x64,放到目前使用者的快取目錄中。
例如我的快取目錄是
C:\Users\MangoDowner.pkg-cache,拼接上fetch的tag就變成了最終的目錄,參考報錯中的信息,可以得到tag為v3.3 {"tag":"v3.3","name":"node-v16.14.2-win-x64"}
再次編譯,成功!
$ pkg -t win server.js > pkg@5.6.0
更多node相關知識,請造訪:
nodejs 教學以上是聊聊用pkg將Node.js專案打包為執行檔的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!