Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

742
Views
Node.js : How to make spawn function synchronous instead of using spawnSync?

I'm currently using spawnSync and stdio:inherit to get the logs printed on my console. However I'm looking for custom logging to a separate file, in case if anything fails during the spawn.

I'm looking to create a wrapper around

spawn

so that it has following properties :

  • Synchronous function where output is stored in a variable
  • View output on the console
  • Write stdout and stderr to a file

For instance :

const result = spawnSync('ls', [ '-l', '-a' ], { stdio: 'inherit'}); // will print as it's processing
console.log(result.stdout); // will print null

const result = spawnSync('ls', [ '-l', '-a' ], { encoding: 'utf-8' }); // won't print anything
console.log(result.stdout); // will print ls results only on completion

I need result such that it will print while it's processing and write to a file at the same time

Also I'm looking for some strategy or solution from node.js side apart from shell scripting

over 4 years ago · Santiago Trujillo
1 answers
Answer question

0

I guess we can't make all three possible because of the limitation of node.js

As per the documentationenter image description here

If we are trying to use stdio:'inherit' , we can either redirect output to parent stdout stream or file using

fs.openSync()

Because of the limitation, we can't use custom streams too.

over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!