<i id='BBjoo'><tr id='BBjoo'><dt id='BBjoo'><q id='BBjoo'><span id='BBjoo'><b id='BBjoo'><form id='BBjoo'><ins id='BBjoo'></ins><ul id='BBjoo'></ul><sub id='BBjoo'></sub></form><legend id='BBjoo'></legend><bdo id='BBjoo'><pre id='BBjoo'><center id='BBjoo'></center></pre></bdo></b><th id='BBjoo'></th></span></q></dt></tr></i><div id='BBjoo'><tfoot id='BBjoo'></tfoot><dl id='BBjoo'><fieldset id='BBjoo'></fieldset></dl></div>

    • <bdo id='BBjoo'></bdo><ul id='BBjoo'></ul>
    <legend id='BBjoo'><style id='BBjoo'><dir id='BBjoo'><q id='BBjoo'></q></dir></style></legend>

    1. <tfoot id='BBjoo'></tfoot>

        <small id='BBjoo'></small><noframes id='BBjoo'>

      1. 在 node js 服务器的终端中无法识别 nodemon 命令

        nodemon command is not recognized in terminal for node js server(在 node js 服务器的终端中无法识别 nodemon 命令)

          <small id='tQFNa'></small><noframes id='tQFNa'>

              <bdo id='tQFNa'></bdo><ul id='tQFNa'></ul>
              <i id='tQFNa'><tr id='tQFNa'><dt id='tQFNa'><q id='tQFNa'><span id='tQFNa'><b id='tQFNa'><form id='tQFNa'><ins id='tQFNa'></ins><ul id='tQFNa'></ul><sub id='tQFNa'></sub></form><legend id='tQFNa'></legend><bdo id='tQFNa'><pre id='tQFNa'><center id='tQFNa'></center></pre></bdo></b><th id='tQFNa'></th></span></q></dt></tr></i><div id='tQFNa'><tfoot id='tQFNa'></tfoot><dl id='tQFNa'><fieldset id='tQFNa'></fieldset></dl></div>

                    <tbody id='tQFNa'></tbody>
                  <tfoot id='tQFNa'></tfoot>
                1. <legend id='tQFNa'><style id='tQFNa'><dir id='tQFNa'><q id='tQFNa'></q></dir></style></legend>
                  本文介绍了在 node js 服务器的终端中无法识别 nodemon 命令的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我正在从

                  node server.js 命令正在运行并启动了服务器,但是 nodemon 命令不起作用.

                  我从 https://scotch.io/tutorials/authenticate-a-node-js-api-with-json-web-tokens 视频.

                  我不知道为什么它不起作用我已经尝试了一些安装 nodemon 的命令.

                  npm install -g nodemonnpm install -g nodemon --savenpm install --save-dev nodemonnpm install -g nodemon@debugnpm install -g --force nodemon

                  我看过一个链接 我不能全局安装 nodemon,nodemon"无法识别,但我不知道如何设置路径,因为我的项目位置在 D 盘.

                  我想运行 nodemon server.js.如果有人有想法,请分享.提前致谢.

                  解决方案

                  需要全局安装

                  npm install -g nodemon# 或者如果使用纱线yarn 全局添加 nodemon

                  然后它就会在路径上可用(我现在看到你已经尝试过了但它没有工作,你的路径可能搞砸了)

                  如果你想使用本地安装的版本,而不是全局安装,那么你可以在你的 package.json 中创建一个脚本

                  脚本":{服务":nodemon server.js"},

                  然后使用

                  npm run serve

                  如果使用纱线,则可选

                  # 在 package.json 中不添加 serve纱线运行 nodemon server.js# 使用 package.json 中的服务脚本纱线运行服务

                  npm 会先查看本地 node_modules 文件夹,然后再在全局模块中查找命令

                  I am doing node.js server setup from https://scotch.io/tutorials/authenticate-a-node-js-api-with-json-web-tokens. I am new in node.js. I am installing npm install nodemon --save. But when I am run the server with this nodemon server.js.
                  In the terminal showing:

                  nodemon is not recognized as internal or external command, operable program or batch file

                  node server.js command is working and started the server, But nodemon command is not working.

                  I am set up the node js server from https://scotch.io/tutorials/authenticate-a-node-js-api-with-json-web-tokens video.

                  I don't know why it is not working I have tried some command for the install nodemon.

                  npm install -g nodemon 
                  npm install -g nodemon --save 
                  npm install --save-dev nodemon 
                  npm install -g nodemon@debug 
                  
                  npm install -g --force nodemon
                  

                  I have seen one link I can´t install nodemon globally, "nodemon" not recognized, But I don't know how to set the path because of my project location in D drive.

                  I want to run nodemon server.js. If anybody has an idea please share. Thanks in advance.

                  解决方案

                  You need to install it globally

                  npm install -g nodemon
                  # or if using yarn
                  yarn global add nodemon
                  

                  And then it will be available on the path (I see now that you have tried this and it didn't work, your path may be messed up)

                  If you want to use the locally installed version, rather than installing globally then you can create a script in your package.json

                  "scripts": {
                      "serve": "nodemon server.js"
                    },
                  

                  and then use

                  npm run serve
                  

                  optionally if using yarn

                  # without adding serve in package.json
                  yarn run nodemon server.js
                  # with serve script in package.json
                  yarn run serve
                  

                  npm will then look in your local node_modules folder before looking for the command in your global modules

                  这篇关于在 node js 服务器的终端中无法识别 nodemon 命令的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Pause youtube video, youtube api(暂停 youtube 视频,youtube api)
                  Youtube iframe api not triggering onYouTubeIframeAPIReady(Youtube iframe api 未触发 onYouTubeIframeAPIReady)
                  How can I stop a video with Javascript in Youtube?(如何在 Youtube 中停止使用 Javascript 的视频?)
                  How to call Greasemonkey#39;s GM_ functions from code that must run in the target page scope?(如何从必须在目标页面范围内运行的代码中调用 Greasemonkey 的 GM_ 函数?)
                  How do you mute an embedded Youtube player?(如何使嵌入式 Youtube 播放器静音?)
                  How to get number of video views with YouTube API?(如何使用 YouTube API 获取视频观看次数?)
                  <tfoot id='5M3yk'></tfoot>

                2. <small id='5M3yk'></small><noframes id='5M3yk'>

                3. <legend id='5M3yk'><style id='5M3yk'><dir id='5M3yk'><q id='5M3yk'></q></dir></style></legend>

                      <tbody id='5M3yk'></tbody>
                      <bdo id='5M3yk'></bdo><ul id='5M3yk'></ul>
                        • <i id='5M3yk'><tr id='5M3yk'><dt id='5M3yk'><q id='5M3yk'><span id='5M3yk'><b id='5M3yk'><form id='5M3yk'><ins id='5M3yk'></ins><ul id='5M3yk'></ul><sub id='5M3yk'></sub></form><legend id='5M3yk'></legend><bdo id='5M3yk'><pre id='5M3yk'><center id='5M3yk'></center></pre></bdo></b><th id='5M3yk'></th></span></q></dt></tr></i><div id='5M3yk'><tfoot id='5M3yk'></tfoot><dl id='5M3yk'><fieldset id='5M3yk'></fieldset></dl></div>