From ba082e854b31937d692e049c5b1e5b3939df58ff Mon Sep 17 00:00:00 2001 From: jonasgrunert Date: Tue, 20 Apr 2021 21:41:56 +0200 Subject: [PATCH 1/3] Replacing bash file with node This should enable cross-plattform development easily, while not requiring any special setups. --- livereload.js | 28 ++++++++++++++++++++++++++++ package.json | 2 +- 2 files changed, 29 insertions(+), 1 deletion(-) create mode 100644 livereload.js diff --git a/livereload.js b/livereload.js new file mode 100644 index 0000000..3b3a8ef --- /dev/null +++ b/livereload.js @@ -0,0 +1,28 @@ +#!/usr/bin/env node +const { spawn } = require("child_process"); +const { normalize } = require("path"); + +const termiateSignals = ["close", "exit", ""]; + +function startSubprocess() { + return new Promise((res, rej) => { + const proc = spawn(process.argv.slice(2).map(normalize).join(" "), { + stdio: ["pipe", "pipe", "pipe"], + shell: + process.platform === "win32" || + /^(msys|cygwin)$/.test(process.env.OSTYPE), + }); + proc.stdout.pipe(process.stdout); + proc.stderr.pipe(process.stderr); + process.stdin.pipe(proc.stdin); + termiateSignals.forEach((e) => proc.on(e, res)); + proc.on("error", rej); + }); +} + +async function loop() { + let code = 64; + while (code === 64) code = await startSubprocess(); +} + +loop(); diff --git a/package.json b/package.json index 4072cf7..a31e667 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "scripts": { "build": "webpack --mode production", "dev": "webpack --mode=development", - "start": "./livereload.sh node_modules/.bin/qode ./dist/index.js", + "start": "node livereload.js node_modules/.bin/qode ./dist/index.js", "debug": "qode --inspect ./dist/index.js" }, "dependencies": { From b6f36887ae965f7b702dfc5b326c8726d0490ce8 Mon Sep 17 00:00:00 2001 From: jonasgrunert Date: Wed, 21 Apr 2021 09:14:12 +0200 Subject: [PATCH 2/3] Adding required changes Except for the handling of the disconnect signal all changes were valid and prove to work on windows. --- livereload.js | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/livereload.js b/livereload.js index 3b3a8ef..22d70cd 100644 --- a/livereload.js +++ b/livereload.js @@ -2,11 +2,14 @@ const { spawn } = require("child_process"); const { normalize } = require("path"); -const termiateSignals = ["close", "exit", ""]; +// 'disconnect' is not needed as it will only be raised, when either the child process or this process calss disconnect explicitly. +// We are abel to ensure, that this will never happen, as we do not need communication with the spawned subprocess +const terminationSignal = ["close", "exit"]; function startSubprocess() { return new Promise((res, rej) => { - const proc = spawn(process.argv.slice(2).map(normalize).join(" "), { + const [command, ...args] = process.argv.slice(2); + const proc = spawn(normalize(command), args, { stdio: ["pipe", "pipe", "pipe"], shell: process.platform === "win32" || @@ -15,7 +18,7 @@ function startSubprocess() { proc.stdout.pipe(process.stdout); proc.stderr.pipe(process.stderr); process.stdin.pipe(proc.stdin); - termiateSignals.forEach((e) => proc.on(e, res)); + terminationSignal.forEach((event) => proc.on(event, res)); proc.on("error", rej); }); } From 1d0f0e28c6c478f24bcd4dd0caf56fd5af3487b9 Mon Sep 17 00:00:00 2001 From: jonasgrunert Date: Wed, 21 Apr 2021 09:25:29 +0200 Subject: [PATCH 3/3] Minor readability changes Forgot an s on line 7 and therefore lne 21. A friend pointed out that the "pipe" array is the default, but "inherit" automatically uses the parents process stdio. --- livereload.js | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/livereload.js b/livereload.js index 22d70cd..fb29b05 100644 --- a/livereload.js +++ b/livereload.js @@ -4,21 +4,19 @@ const { normalize } = require("path"); // 'disconnect' is not needed as it will only be raised, when either the child process or this process calss disconnect explicitly. // We are abel to ensure, that this will never happen, as we do not need communication with the spawned subprocess -const terminationSignal = ["close", "exit"]; +const terminationSignals = ["close", "exit"]; function startSubprocess() { return new Promise((res, rej) => { const [command, ...args] = process.argv.slice(2); const proc = spawn(normalize(command), args, { - stdio: ["pipe", "pipe", "pipe"], + // use parents stdio + stdio: "inherit", shell: process.platform === "win32" || /^(msys|cygwin)$/.test(process.env.OSTYPE), }); - proc.stdout.pipe(process.stdout); - proc.stderr.pipe(process.stderr); - process.stdin.pipe(proc.stdin); - terminationSignal.forEach((event) => proc.on(event, res)); + terminationSignals.forEach((event) => proc.on(event, res)); proc.on("error", rej); }); }