◆ 模組作用:
nodemon是乙個命令列工具,用以輔助專案開發。在node.js中,可以在每次修改檔案後重新執行該檔案。
◆ 使用步驟:
f:\workstation\nodejs> npm install nodemon -g
在命令列工具中用nodemon命令替代node命令執行檔案
f:\workstation\nodejs> nodemon .\demo.js
[nodemon] 2.0.2
[nodemon] to restart at any time, enter `rs`
[nodemon] watching dir(s): *.*
[nodemon] watching extensions: js,mjs,json
[nodemon] starting `node .\demo.js`
測試**
[nodemon] clean exit - waiting for changes before restart
◆ nodemon執行報錯處理:
報錯資訊:
f:\workstation\nodejs> nodemon .\demo.js
https:/go.microsoft.com/fwlink/?linkid=135170 中的 about_execution_policies。
所在位置 行:1 字元: 1
+ nodemon .\demo.js
+ ~~~~~~~
+ categoryinfo : securityerror: (:) ,pssecurityexception
+ fullyqualifiederrorid : unauthorizedaccess
解決方案:
管理員身份開啟powershell,輸入set-executionpolicy remotesigned,選擇y或者a。
f:\workstation\nodejs> set-executionpolicy remotesigned
執行策略更改
執行策略可幫助你防止執行不信任的指令碼。更改執行策略可能會產生安全風險,如 https:/go.microsoft.com/fwlink/?linkid=135170
中的 about_execution_policies 幫助主題所述。是否要更改執行策略?
[y] 是(y) [a] 全是(a) [n] 否(n) [l] 全否(l) [s] 暫停(s) [?] 幫助 (預設值為「n」): y
nodejs之如何匯入匯出資料
1 安裝node xlsx模組 cnpm i node xlsx s 2 在你的js檔案中引入該模組以及建立引入的檔案的位址 const xlsx require node xlsx 每個人根據自己要匯入檔案的真實位址寫 const xlsxfile 檔案路徑 3 引入之後在下面繼續寫 route....
Nodejs之Buffer資料轉ReadSteam
stream fs.createreadstream content.txt 返回乙個readstream 檔案讀取流,輸入流 物件。可讀流 fs.createreadstream不是用來做buffer到readstream的轉換的。雖然它接受乙個buffer,但buffer裡面放的仍然應該是乙個檔...
Nodejs資料之web伺服器
建立web伺服器示例 引用系統模組 建立web伺服器 當客戶端傳送請求的時候 響應 res.end 監聽3000埠 請求資訊獲取方法 req.headers 獲取請求報文 req.url 獲取請求位址 req.method 獲取請求方法 get請求處理 引數被放置在瀏覽器位址列中,獲取引數需要使用系...