• Jobs
  • About Us
  • professionals
    • Home
    • Jobs
    • Courses and challenges
    • Questions
    • Teachers
  • business
    • Home
    • Post vacancy
    • Our process
    • Pricing
    • Assessments
    • Payroll
    • Blog
    • Sales
    • Salary Calculator

0

605
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

about 3 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.

about 3 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 Our process Sales
Legal
Terms and conditions Privacy policy
© 2025 PeakU Inc. All Rights Reserved.

Andres GPT

Recommend me some offers
I have an error