Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6139931
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T18:03:13+00:00 2026-05-23T18:03:13+00:00

I am trying to start a long running program that gives lots of output

  • 0

I am trying to start a long running program that gives lots of output to sdtout. I was trying to use the method below to read data on intervals.

s    = spawn('blah_long_running_expect.pl --device server');
setInterval( function (){   
  s.stdout.on('data', function (data) {
     console.log("herehere");})
},1000);

}

This is part of a http server instance…there is a createserver somewhere before that. My eventual idea is to use response.write to output to screen

I’m getting the below error right now. I’m wondering if this setinterval way of reading lines is completely wrong?

(node) warning: possible EventEmitter memory leak detected. 11 listeners added. 
Use emitter.setMaxListeners() to increase limit.
Trace: 
    at Socket.<anonymous> (events.js:126:17)
    at Timer.callback (/tmp/requestHandlers.js:12:17)
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T18:03:13+00:00Added an answer on May 23, 2026 at 6:03 pm

    s.stdout.on(‘data’, function (data) {
    console.log(“herehere”);})
    },1000);

    The .on call adds an event listener. What you want to do instead is something like this.

    s = spawn('blah_long_running_expect.pl --device server');
    var dd = "";
    s.stdout.on('data', function(d) {
      console.log('some data : ' + d);
      dd += d;
    });
    s.stdout.on('end', function() {
      console.log('end');
    });
    setInterval( function (){   
      console.log(dd);
      dd = "";
    },1000);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to write an application that will allow the user to start long-running
I am trying to execute a Process.Start() that is a long running process, and
I have a long-running python program that I'm trying to run on a remote
I have lots of jobs in my system that are long-running but not CPU
I am trying to get this program to start running but currently I just
i am trying to start the Program D from the terminal, command in terminal
I am trying to start service from AsyncTask but cant see that its starts.
I am trying to start activity at start up of phone but whole program
We got a long running job that takes a job details list and shares
I'm trying to convince my organization to start running unit tests on our C++

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.