nodemon not working properly

后端 未结 13 677
长发绾君心
长发绾君心 2021-02-01 05:18

I am running my nodejs app by npm start

I just installed nodemon by sudo npm install -g nodemon so that i can get my server restarted when i s

13条回答
  •  再見小時候
    2021-02-01 05:50

    In my case, I had to install nodemon globally. Use this command to do so..

    npm install -g nodemon
    

    If you're using Linux you may need to prefix the command with the sudo keyword for administration access..

    sudo npm install -g nodemon
    

提交回复
热议问题