python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
How to use Cspell --file-list stdin
I wanted to use cspell --file-list command as a child process in Node Js.
I wanted to pass large array of strings to this child process and feed it by stdin.
var child = spawn('cspell --file-list',[],...

Sarthak Agarwal
Votes: 0
Answers: 1
Invalid argument(s): Illegal argument in isolate message: (object is aReceivePort)
I am not sure if I am doing anything wrong in this code but I am clearly passing a SendPort when spawning a new isolate, however when I call:
Infrastructure.instance.initialize(); I get following exce...

AKornich
Votes: 0
Answers: 1
How to use ffmpeg and pipe the result to a stream with spawn in nodejs?
const { spawn } = require('child_process');
const fs = require('fs');
const readStream = fs.createReadStream('./a.h264');
const command = spawn('ffmpeg', ['-i', 'pipe:0', '-c', 'copy', '-o', 'pipe:1']...

radiorz
Votes: 0
Answers: 1
Reusing SSH key passphrase between multiple command lines
I'm using NodeJS to execute multiple git command lines. Updating submodules, pulling some projects, etc. Everything works but I have an inconvenient issue. When I perform two command lines, like this
...
Magus
Votes: 0
Answers: 1