运行 使用 npm 进行节点检查器和节点调试 运行

Running node-inspector and node-debug with npm run

如何使用 npm run 同时 运行 两个脚本? 首先我知道 g运行t 或 gulp 但我想在没有其他 js 模块的情况下实现它。 为此,我有这个脚本:

"scripts": {
  "start": "node ./node/www",
  "nodemon": "./node_modules/.bin/nodemon node/www.js -i './e2e-tests/**' -i './node_modules/**' -i '.idea/**' -i './node/log/**' -w './node/server/**/*' -V -L",
  "nodeInspector": "./node_modules/.bin/node-inspector --save-live-edit=true",
  "debug": "node-debug ./node/www.js",
  "ins": "npm run nodeInspector & npm run debug"
}

我想 运行 和 npm run ins 但它只会触发节点检查器。

不可能运行这两个命令。他们每个人都需要自己的控制台

如果node-debug来自node-inspector包,那么您不需要启动新的node-inspector实例,node-debug会自动为您启动。

这是节点调试在幕后执行的操作 (source code):

  1. 运行 节点检查器。
  2. 运行 调试模式下提供的脚本
  3. 打开用户的浏览器,将其指向检查器。

事实上,运行 node-inspectornode-debug 都不会按预期工作,因为第二个 node-inspector 实例将无法附加到同一个第一个实例已经侦听的端口。

我无法在一行中实现它,这就是为什么我改用并发 grunt 的原因:

module.exports = function(grunt) {
    grunt.initConfig({
        concurrent: {
            options: {
                limit: 3,
                logConcurrentOutput: true
            },
            debug: {
                tasks: ['node-inspector', 'nodemon:debug'],
                options: {
                    logConcurrentOutput: true
                }
            }
        },
        nodemon: {
            dev: {
                script: "node/www.js",
                options: {
                    ignore: ['node/public/**'],
                    callback: function (nodemon) {
                        nodemon.on('log', function (event) {
                            console.log(JSON.stringify(event));
                        });

                        // opens browser on initial server start
                        nodemon.on('config:update', function () {
                            console.log("nodemon config:update oldu");
                            // Delay before server listens on port
                            setTimeout(function() {
                                require('open')('http://localhost:3000');
                            }, 1000);
                        });

                        // refreshes browser when server reboots
                        nodemon.on('restart', function () {
                            // Delay before server listens on port
                            setTimeout(function() {
                                //require('fs').writeFileSync('.rebooted', 'rebooted');
                            }, 1000);
                        });
                    }
                }
            },
            debug: {
                script: './node/www.js',
                options: {
                    ignore: ['node/log/*.log','node/public/**','node/views/**','doc/**','e2e-tests/**','.idea'],
                    callback: function (nodemon) {
                        nodemon.on('log', function (event) {
                            console.log("Nodemon debug callback fonksiyonu nodemon.onLog olayı");
                        });

                        // opens browser on initial server start
                        nodemon.on('config:update', function () {
                            console.log("Nodemon debug callback fonksiyonu nodemon.onConfig:Update olayı");
                            // Delay before server listens on port
                            setTimeout(function() {
                                require('open')('http://localhost:3000');
                                require('open')('http://localhost:1337/debug?port=5858');
                            }, 1000);
                        });

                        // refreshes browser when server reboots
                        nodemon.on('restart', function () {
                            console.log("Nodemon debug callback fonksiyonu nodemon.onRestart olayı");
                            // Delay before server listens on port
                            setTimeout(function() {
                                //require('fs').writeFileSync('.rebooted', 'rebooted');
                            }, 1000);
                        });
                    },
                    nodeArgs: ['--debug'],
                    watch: ['Gruntfile.js', 'node/server', 'package.json']
                }
            }
        },
        'node-inspector': {
            custom: {
                options: {
                    'web-port': 1337,
                    'web-host': 'localhost',
                    'debug-port': 5857,
                    'save-live-edit': true,
                    'no-preload': true,
                    'stack-trace-limit': 4,
                    'hidden': ['node_modules']
                }
            }
        }
    });

    require('matchdep').filterDev('grunt-*').forEach(grunt.loadNpmTasks);

    // Çalışması test edildi ve iki pencerede hem test hem uygulama açıyor.
    grunt.registerTask('nodemon-debug', ['concurrent:debug']);

};

我设法 运行 从脚本中并发使用节点检查器和 nodemon

https://www.npmjs.com/package/concurrently

"dev": "npm install && concurrently \"node-inspector --web-port 9090\" \"nodemon --debug .\""