Nodejs資料のnodemonモジュール

1407 ワード

◆モジュールの役割:
Nodemonは、プロジェクト開発を支援するコマンドラインツールです.Node.jsでは、ファイルを変更するたびにファイルを再実行できます.
◆使用手順:
  • npm install nodemon–gを使用して
  • をダウンロード
    F:\workstation
    odejs> npm install nodemon -g
  • コマンドラインツールでnodeコマンド実行ファイル
  • の代わりにnodemonコマンドを使用する.
    
    F:\workstation
    odejs> 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
    odejs> nodemon .\demo.js nodemon : C:\Users\ASUS\AppData\Roaming
    pm
    odemon.ps1, 。 , 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
    odejs> 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